├── DesignerStudio ├── DesignerStudio.sln └── DesignerStudio │ ├── DesignerStudio.ico │ ├── DesignerStudio.vcxproj │ ├── DesignerStudio.vcxproj.filters │ ├── DesignerStudio.vcxproj.user │ ├── GeneratedFiles │ └── qrc_resources.cpp │ ├── designer-studio-splash.png │ ├── main.cpp │ ├── resources.qrc │ └── x64 │ ├── Debug │ ├── DesignerStudio.log │ ├── DesignerStudio.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── DesignerStudio.lastbuildstate │ │ ├── custombuild.command.1.tlog │ │ ├── custombuild.read.1.tlog │ │ ├── custombuild.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── DesignerStudio.vcxprojResolveAssemblyReference.cache │ ├── main.obj │ ├── qrc_resources.obj │ └── vc140.pdb │ └── Release │ ├── DesignerStudio.log │ ├── DesignerStudio.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── DesignerStudio.lastbuildstate │ ├── custombuild.command.1.tlog │ ├── custombuild.read.1.tlog │ ├── custombuild.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── main.obj │ └── qrc_resources.obj ├── LICENSE ├── README.md ├── Studio.Softer.Controls ├── Studio.Softer.Controls.sdf ├── Studio.Softer.Controls.sln └── Studio.Softer.Controls │ ├── ColorWheel.cpp │ ├── ColorWheel.h │ ├── Studio.Softer.Controls.vcxproj │ ├── Studio.Softer.Controls.vcxproj.filters │ ├── Studio.Softer.Controls.vcxproj.user │ ├── studiosoftercontrols_global.h │ └── x64 │ ├── Debug │ ├── Studio.S.CA629F88.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Studio.Softer.Controls.lastbuildstate │ │ ├── Studio.Softer.Controls.write.1u.tlog │ │ ├── custombuild.command.1.tlog │ │ ├── custombuild.read.1.tlog │ │ ├── custombuild.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Studio.Softer.Controls.log │ └── qrc_resources.obj │ └── Release │ ├── ColorWheel.obj │ ├── Studio.S.CA629F88.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Studio.Softer.Controls.lastbuildstate │ ├── Studio.Softer.Controls.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ └── Studio.Softer.Controls.log ├── Studio.Softer.Windows ├── Studio.Softer.Windows.sdf ├── Studio.Softer.Windows.sln └── Studio.Softer.Windows │ ├── Designer.cpp │ ├── Designer.h │ ├── Designer.ui │ ├── GeneratedFiles │ ├── Debug │ │ ├── moc_Designer.cpp │ │ ├── moc_TabBar.cpp │ │ ├── moc_ToolHost.cpp │ │ ├── moc_WinHost.cpp │ │ └── moc_Window.cpp │ ├── Release │ │ ├── moc_Designer.cpp │ │ └── moc_Window.cpp │ ├── qrc_resources.cpp │ ├── ui_Designer.h │ └── ui_WinHost.h │ ├── Studio.Softer.Windows.vcxproj │ ├── Studio.Softer.Windows.vcxproj.filters │ ├── Studio.Softer.Windows.vcxproj.user │ ├── Window.cpp │ ├── Window.h │ ├── resources.qrc │ ├── studiosofterwindows_global.h │ └── x64 │ ├── Debug │ ├── Designer.obj │ ├── Helper.obj │ ├── Studio.S.4D99AA7C.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Studio.Softer.Windows.lastbuildstate │ │ ├── Studio.Softer.Windows.write.1u.tlog │ │ ├── custombuild.command.1.tlog │ │ ├── custombuild.read.1.tlog │ │ ├── custombuild.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Studio.Softer.Windows.log │ ├── TabBar.obj │ ├── ToolHost.obj │ ├── ToolPanel.obj │ ├── ToolTray.obj │ ├── ToolTrayPanel.obj │ ├── WinHost.obj │ ├── Window.obj │ ├── moc_Designer.obj │ ├── moc_TabBar.obj │ ├── moc_ToolHost.obj │ ├── moc_ToolPanel.obj │ ├── moc_ToolTray.obj │ ├── moc_ToolTrayPanel.obj │ ├── moc_WinHost.obj │ ├── moc_Window.obj │ ├── qrc_resources.obj │ └── vc140.pdb │ └── Release │ ├── Designer.obj │ ├── Studio.S.4D99AA7C.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Studio.Softer.Windows.lastbuildstate │ ├── Studio.Softer.Windows.write.1u.tlog │ ├── custombuild.command.1.tlog │ ├── custombuild.read.1.tlog │ ├── custombuild.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── Studio.Softer.Windows.log │ ├── Window.obj │ ├── moc_Designer.obj │ ├── moc_Window.obj │ └── qrc_resources.obj ├── Studio.Softer ├── Studio.Softer.sdf ├── Studio.Softer.sln └── Studio.Softer │ ├── Application.cpp │ ├── Application.h │ ├── DarkStyle.qss │ ├── GeneratedFiles │ └── qrc_resources.cpp │ ├── IconsCommand │ ├── Close.png │ ├── Maximize.png │ ├── Minimize.png │ └── Restore.png │ ├── ProductType.h │ ├── Studio.Softer.vcxproj │ ├── Studio.Softer.vcxproj.filters │ ├── Studio.Softer.vcxproj.user │ ├── icon.png │ ├── resources.qrc │ ├── studiosofter_global.h │ └── x64 │ ├── Debug │ ├── Application.obj │ ├── Studio.Softer.log │ ├── Studio.Softer.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Studio.Softer.lastbuildstate │ │ ├── Studio.Softer.write.1u.tlog │ │ ├── custombuild.command.1.tlog │ │ ├── custombuild.read.1.tlog │ │ ├── custombuild.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Studio.Softer.vcxprojResolveAssemblyReference.cache │ ├── qrc_resources.obj │ └── vc140.pdb │ └── Release │ ├── Application.obj │ ├── Studio.Softer.log │ ├── Studio.Softer.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Studio.Softer.lastbuildstate │ ├── Studio.Softer.write.1u.tlog │ ├── custombuild.command.1.tlog │ ├── custombuild.read.1.tlog │ ├── custombuild.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── Studio.Softer.vcxprojResolveAssemblyReference.cache │ └── qrc_resources.obj ├── window1.png └── window2.png /DesignerStudio/DesignerStudio.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DesignerStudio", "DesignerStudio\DesignerStudio.vcxproj", "{B12702AD-ABFB-343A-A199-8E24837244A3}" 7 | EndProject 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Studio.Softer", "..\Studio.Softer\Studio.Softer\Studio.Softer.vcxproj", "{E9EFD6BD-245D-46FC-861A-9753B58106F0}" 9 | EndProject 10 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Studio.Softer.Controls", "..\Studio.Softer.Controls\Studio.Softer.Controls\Studio.Softer.Controls.vcxproj", "{CA629F88-867A-4263-A1F8-D0C1BF8D4F4D}" 11 | EndProject 12 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Studio.Softer.Windows", "..\Studio.Softer.Windows\Studio.Softer.Windows\Studio.Softer.Windows.vcxproj", "{4D99AA7C-37CC-45DA-85C1-A45D80BB04DB}" 13 | EndProject 14 | Global 15 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 16 | Debug|x64 = Debug|x64 17 | Release|x64 = Release|x64 18 | EndGlobalSection 19 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 20 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.ActiveCfg = Debug|x64 21 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.Build.0 = Debug|x64 22 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.ActiveCfg = Release|x64 23 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.Build.0 = Release|x64 24 | {E9EFD6BD-245D-46FC-861A-9753B58106F0}.Debug|x64.ActiveCfg = Debug|x64 25 | {E9EFD6BD-245D-46FC-861A-9753B58106F0}.Debug|x64.Build.0 = Debug|x64 26 | {E9EFD6BD-245D-46FC-861A-9753B58106F0}.Release|x64.ActiveCfg = Release|x64 27 | {E9EFD6BD-245D-46FC-861A-9753B58106F0}.Release|x64.Build.0 = Release|x64 28 | {CA629F88-867A-4263-A1F8-D0C1BF8D4F4D}.Debug|x64.ActiveCfg = Debug|x64 29 | {CA629F88-867A-4263-A1F8-D0C1BF8D4F4D}.Debug|x64.Build.0 = Debug|x64 30 | {CA629F88-867A-4263-A1F8-D0C1BF8D4F4D}.Release|x64.ActiveCfg = Release|x64 31 | {CA629F88-867A-4263-A1F8-D0C1BF8D4F4D}.Release|x64.Build.0 = Release|x64 32 | {4D99AA7C-37CC-45DA-85C1-A45D80BB04DB}.Debug|x64.ActiveCfg = Debug|x64 33 | {4D99AA7C-37CC-45DA-85C1-A45D80BB04DB}.Debug|x64.Build.0 = Debug|x64 34 | {4D99AA7C-37CC-45DA-85C1-A45D80BB04DB}.Release|x64.ActiveCfg = Release|x64 35 | {4D99AA7C-37CC-45DA-85C1-A45D80BB04DB}.Release|x64.Build.0 = Release|x64 36 | EndGlobalSection 37 | GlobalSection(SolutionProperties) = preSolution 38 | HideSolutionNode = FALSE 39 | EndGlobalSection 40 | EndGlobal 41 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/DesignerStudio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/DesignerStudio.ico -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/DesignerStudio.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | x64 7 | 8 | 9 | Release 10 | x64 11 | 12 | 13 | 14 | {B12702AD-ABFB-343A-A199-8E24837244A3} 15 | Qt4VSv1.0 16 | 10.0.16299.0 17 | 18 | 19 | 20 | Application 21 | v140 22 | 23 | 24 | Application 25 | v140 26 | 27 | 28 | 29 | $(MSBuildProjectDirectory)\QtMsBuild 30 | 31 | 32 | $(SolutionDir)$(Platform)\$(Configuration)\ 33 | 34 | 35 | $(SolutionDir)$(Platform)\$(Configuration)\ 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | true 55 | UNICODE;_UNICODE;WIN32;WIN64;QT_DLL;QT_3DCORE_LIB;QT_3DANIMATION_LIB;QT_3DEXTRAS_LIB;QT_3DINPUT_LIB;QT_3DLOGIC_LIB;QT_3DRENDER_LIB;QT_3DQUICK_LIB;QT_3DQUICKANIMATION_LIB;QT_3DQUICKEXTRAS_LIB;QT_3DQUICKINPUT_LIB;QT_3DQUICKRENDER_LIB;QT_3DQUICKSCENE2D_LIB;QT_BLUETOOTH_LIB;QT_CONCURRENT_LIB;QT_CORE_LIB;QT_DBUS_LIB;QT_GAMEPAD_LIB;QT_GUI_LIB;QT_HELP_LIB;QT_LOCATION_LIB;QT_MULTIMEDIA_LIB;QT_MULTIMEDIAWIDGETS_LIB;QT_NETWORK_LIB;QT_NFC_LIB;QT_OPENGL_LIB;QT_OPENGLEXTENSIONS_LIB;QT_POSITIONING_LIB;QT_PRINTSUPPORT_LIB;QT_QML_LIB;QT_QUICK_LIB;QT_QUICKWIDGETS_LIB;QT_QUICKCONTROLS2_LIB;QT_QMLTEST_LIB;QT_SCXML_LIB;QT_SENSORS_LIB;QT_SERIALBUS_LIB;QT_SERIALPORT_LIB;QT_SQL_LIB;QT_SVG_LIB;QT_TESTLIB_LIB;QT_UITOOLS_LIB;QT_WEBCHANNEL_LIB;QT_WEBSOCKETS_LIB;QT_WIDGETS_LIB;QT_WINEXTRAS_LIB;QT_XML_LIB;QT_XMLPATTERNS_LIB;%(PreprocessorDefinitions) 56 | .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);$(QTDIR)\include\Qt3DCore;$(QTDIR)\include\Qt3DAnimation;$(QTDIR)\include\Qt3DExtras;$(QTDIR)\include\Qt3DInput;$(QTDIR)\include\Qt3DLogic;$(QTDIR)\include\Qt3DRender;$(QTDIR)\include\Qt3DQuick;$(QTDIR)\include\Qt3DQuickAnimation;$(QTDIR)\include\Qt3DQuickExtras;$(QTDIR)\include\Qt3DQuickInput;$(QTDIR)\include\Qt3DQuickRender;$(QTDIR)\include\Qt3DQuickScene2D;$(QTDIR)\include\ActiveQt;$(QTDIR)\include\QtBluetooth;$(QTDIR)\include\QtConcurrent;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtDBus;$(QTDIR)\include\QtGamepad;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtHelp;$(QTDIR)\include\QtLocation;$(QTDIR)\include\QtMultimedia;$(QTDIR)\include\QtMultimediaWidgets;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtNfc;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtOpenGLExtensions;$(QTDIR)\include\QtPositioning;$(QTDIR)\include\QtPrintSupport;$(QTDIR)\include\QtQml;$(QTDIR)\include\QtQuick;$(QTDIR)\include\QtQuickWidgets;$(QTDIR)\include\QtQuickControls2;$(QTDIR)\include\QtQuickTest;$(QTDIR)\include\QtScxml;$(QTDIR)\include\QtSensors;$(QTDIR)\include\QtSerialBus;$(QTDIR)\include\QtSerialPort;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtSvg;$(QTDIR)\include\QtTest;$(QTDIR)\include\QtUiTools;$(QTDIR)\include\QtWebChannel;$(QTDIR)\include\QtWebSockets;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtWinExtras;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtXmlPatterns;../../Studio.Softer/Studio.Softer;%(AdditionalIncludeDirectories) 57 | Disabled 58 | ProgramDatabase 59 | MultiThreadedDebugDLL 60 | true 61 | 62 | 63 | Windows 64 | $(OutDir)\$(ProjectName).exe 65 | $(QTDIR)\lib;%(AdditionalLibraryDirectories) 66 | true 67 | qtmaind.lib;Qt53DCored.lib;Qt53DAnimationd.lib;Qt53DExtrasd.lib;Qt53DInputd.lib;Qt53DLogicd.lib;Qt53DRenderd.lib;Qt53DQuickd.lib;Qt53DQuickAnimationd.lib;Qt53DQuickExtrasd.lib;Qt53DQuickInputd.lib;Qt53DQuickRenderd.lib;Qt53DQuickScene2Dd.lib;Qt5AxContainerd.lib;Qt5AxBased.lib;Qt5Bluetoothd.lib;Qt5Concurrentd.lib;Qt5Cored.lib;Qt5DBusd.lib;Qt5Gamepadd.lib;Qt5Guid.lib;Qt5Helpd.lib;Qt5Locationd.lib;Qt5Multimediad.lib;Qt5MultimediaWidgetsd.lib;Qt5Networkd.lib;Qt5Nfcd.lib;Qt5OpenGLd.lib;opengl32.lib;glu32.lib;Qt5OpenGLExtensionsd.lib;Qt5Positioningd.lib;Qt5PrintSupportd.lib;Qt5Qmld.lib;Qt5Quickd.lib;Qt5QuickWidgetsd.lib;Qt5QuickControls2d.lib;Qt5QuickTestd.lib;Qt5Scxmld.lib;Qt5Sensorsd.lib;Qt5SerialBusd.lib;Qt5SerialPortd.lib;Qt5Sqld.lib;Qt5Svgd.lib;Qt5Testd.lib;Qt5UiToolsd.lib;Qt5WebChanneld.lib;Qt5WebSocketsd.lib;Qt5Widgetsd.lib;Qt5WinExtrasd.lib;Qt5Xmld.lib;Qt5XmlPatternsd.lib;%(AdditionalDependencies) 68 | 69 | 70 | .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp 71 | Moc'ing %(Identity)... 72 | .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName)\.;$(QTDIR)\include\Qt3DCore;$(QTDIR)\include\Qt3DAnimation;$(QTDIR)\include\Qt3DExtras;$(QTDIR)\include\Qt3DInput;$(QTDIR)\include\Qt3DLogic;$(QTDIR)\include\Qt3DRender;$(QTDIR)\include\Qt3DQuick;$(QTDIR)\include\Qt3DQuickAnimation;$(QTDIR)\include\Qt3DQuickExtras;$(QTDIR)\include\Qt3DQuickInput;$(QTDIR)\include\Qt3DQuickRender;$(QTDIR)\include\Qt3DQuickScene2D;$(QTDIR)\include\ActiveQt;$(QTDIR)\include\QtBluetooth;$(QTDIR)\include\QtConcurrent;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtDBus;$(QTDIR)\include\QtGamepad;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtHelp;$(QTDIR)\include\QtLocation;$(QTDIR)\include\QtMultimedia;$(QTDIR)\include\QtMultimediaWidgets;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtNfc;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtOpenGLExtensions;$(QTDIR)\include\QtPositioning;$(QTDIR)\include\QtPrintSupport;$(QTDIR)\include\QtQml;$(QTDIR)\include\QtQuick;$(QTDIR)\include\QtQuickWidgets;$(QTDIR)\include\QtQuickControls2;$(QTDIR)\include\QtQuickTest;$(QTDIR)\include\QtScxml;$(QTDIR)\include\QtSensors;$(QTDIR)\include\QtSerialBus;$(QTDIR)\include\QtSerialPort;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtSvg;$(QTDIR)\include\QtTest;$(QTDIR)\include\QtUiTools;$(QTDIR)\include\QtWebChannel;$(QTDIR)\include\QtWebSockets;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtWinExtras;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtXmlPatterns 73 | UNICODE;_UNICODE;WIN32;WIN64;QT_DLL;QT_3DCORE_LIB;QT_3DANIMATION_LIB;QT_3DEXTRAS_LIB;QT_3DINPUT_LIB;QT_3DLOGIC_LIB;QT_3DRENDER_LIB;QT_3DQUICK_LIB;QT_3DQUICKANIMATION_LIB;QT_3DQUICKEXTRAS_LIB;QT_3DQUICKINPUT_LIB;QT_3DQUICKRENDER_LIB;QT_3DQUICKSCENE2D_LIB;QT_BLUETOOTH_LIB;QT_CONCURRENT_LIB;QT_CORE_LIB;QT_DBUS_LIB;QT_GAMEPAD_LIB;QT_GUI_LIB;QT_HELP_LIB;QT_LOCATION_LIB;QT_MULTIMEDIA_LIB;QT_MULTIMEDIAWIDGETS_LIB;QT_NETWORK_LIB;QT_NFC_LIB;QT_OPENGL_LIB;QT_OPENGLEXTENSIONS_LIB;QT_POSITIONING_LIB;QT_PRINTSUPPORT_LIB;QT_QML_LIB;QT_QUICK_LIB;QT_QUICKWIDGETS_LIB;QT_QUICKCONTROLS2_LIB;QT_QMLTEST_LIB;QT_SCXML_LIB;QT_SENSORS_LIB;QT_SERIALBUS_LIB;QT_SERIALPORT_LIB;QT_SQL_LIB;QT_SVG_LIB;QT_TESTLIB_LIB;QT_UITOOLS_LIB;QT_WEBCHANNEL_LIB;QT_WEBSOCKETS_LIB;QT_WIDGETS_LIB;QT_WINEXTRAS_LIB;QT_XML_LIB;QT_XMLPATTERNS_LIB 74 | 75 | 76 | Uic'ing %(Identity)... 77 | .\GeneratedFiles\ui_%(Filename).h 78 | 79 | 80 | Rcc'ing %(Identity)... 81 | .\GeneratedFiles\qrc_%(Filename).cpp 82 | 83 | 84 | 85 | 86 | true 87 | UNICODE;_UNICODE;WIN32;WIN64;QT_DLL;QT_NO_DEBUG;NDEBUG;QT_3DCORE_LIB;QT_3DANIMATION_LIB;QT_3DEXTRAS_LIB;QT_3DINPUT_LIB;QT_3DLOGIC_LIB;QT_3DRENDER_LIB;QT_3DQUICK_LIB;QT_3DQUICKANIMATION_LIB;QT_3DQUICKEXTRAS_LIB;QT_3DQUICKINPUT_LIB;QT_3DQUICKRENDER_LIB;QT_3DQUICKSCENE2D_LIB;QT_BLUETOOTH_LIB;QT_CONCURRENT_LIB;QT_CORE_LIB;QT_DBUS_LIB;QT_GAMEPAD_LIB;QT_GUI_LIB;QT_HELP_LIB;QT_LOCATION_LIB;QT_MULTIMEDIA_LIB;QT_MULTIMEDIAWIDGETS_LIB;QT_NETWORK_LIB;QT_NFC_LIB;QT_OPENGL_LIB;QT_OPENGLEXTENSIONS_LIB;QT_POSITIONING_LIB;QT_PRINTSUPPORT_LIB;QT_QML_LIB;QT_QUICK_LIB;QT_QUICKWIDGETS_LIB;QT_QUICKCONTROLS2_LIB;QT_QMLTEST_LIB;QT_SCXML_LIB;QT_SENSORS_LIB;QT_SERIALBUS_LIB;QT_SERIALPORT_LIB;QT_SQL_LIB;QT_SVG_LIB;QT_TESTLIB_LIB;QT_UITOOLS_LIB;QT_WEBCHANNEL_LIB;QT_WEBSOCKETS_LIB;QT_WIDGETS_LIB;QT_WINEXTRAS_LIB;QT_XML_LIB;QT_XMLPATTERNS_LIB;%(PreprocessorDefinitions) 88 | .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);$(QTDIR)\include\Qt3DCore;$(QTDIR)\include\Qt3DAnimation;$(QTDIR)\include\Qt3DExtras;$(QTDIR)\include\Qt3DInput;$(QTDIR)\include\Qt3DLogic;$(QTDIR)\include\Qt3DRender;$(QTDIR)\include\Qt3DQuick;$(QTDIR)\include\Qt3DQuickAnimation;$(QTDIR)\include\Qt3DQuickExtras;$(QTDIR)\include\Qt3DQuickInput;$(QTDIR)\include\Qt3DQuickRender;$(QTDIR)\include\Qt3DQuickScene2D;$(QTDIR)\include\ActiveQt;$(QTDIR)\include\QtBluetooth;$(QTDIR)\include\QtConcurrent;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtDBus;$(QTDIR)\include\QtGamepad;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtHelp;$(QTDIR)\include\QtLocation;$(QTDIR)\include\QtMultimedia;$(QTDIR)\include\QtMultimediaWidgets;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtNfc;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtOpenGLExtensions;$(QTDIR)\include\QtPositioning;$(QTDIR)\include\QtPrintSupport;$(QTDIR)\include\QtQml;$(QTDIR)\include\QtQuick;$(QTDIR)\include\QtQuickWidgets;$(QTDIR)\include\QtQuickControls2;$(QTDIR)\include\QtQuickTest;$(QTDIR)\include\QtScxml;$(QTDIR)\include\QtSensors;$(QTDIR)\include\QtSerialBus;$(QTDIR)\include\QtSerialPort;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtSvg;$(QTDIR)\include\QtTest;$(QTDIR)\include\QtUiTools;$(QTDIR)\include\QtWebChannel;$(QTDIR)\include\QtWebSockets;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtWinExtras;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtXmlPatterns;../../Studio.Softer/Studio.Softer;%(AdditionalIncludeDirectories) 89 | 90 | MultiThreadedDLL 91 | true 92 | 93 | 94 | Windows 95 | $(OutDir)\$(ProjectName).exe 96 | $(QTDIR)\lib;%(AdditionalLibraryDirectories) 97 | false 98 | qtmain.lib;Qt53DCore.lib;Qt53DAnimation.lib;Qt53DExtras.lib;Qt53DInput.lib;Qt53DLogic.lib;Qt53DRender.lib;Qt53DQuick.lib;Qt53DQuickAnimation.lib;Qt53DQuickExtras.lib;Qt53DQuickInput.lib;Qt53DQuickRender.lib;Qt53DQuickScene2D.lib;Qt5AxContainer.lib;Qt5AxBase.lib;Qt5Bluetooth.lib;Qt5Concurrent.lib;Qt5Core.lib;Qt5DBus.lib;Qt5Gamepad.lib;Qt5Gui.lib;Qt5Help.lib;Qt5Location.lib;Qt5Multimedia.lib;Qt5MultimediaWidgets.lib;Qt5Network.lib;Qt5Nfc.lib;Qt5OpenGL.lib;opengl32.lib;glu32.lib;Qt5OpenGLExtensions.lib;Qt5Positioning.lib;Qt5PrintSupport.lib;Qt5Qml.lib;Qt5Quick.lib;Qt5QuickWidgets.lib;Qt5QuickControls2.lib;Qt5QuickTest.lib;Qt5Scxml.lib;Qt5Sensors.lib;Qt5SerialBus.lib;Qt5SerialPort.lib;Qt5Sql.lib;Qt5Svg.lib;Qt5Test.lib;Qt5UiTools.lib;Qt5WebChannel.lib;Qt5WebSockets.lib;Qt5Widgets.lib;Qt5WinExtras.lib;Qt5Xml.lib;Qt5XmlPatterns.lib;%(AdditionalDependencies) 99 | 100 | 101 | .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp 102 | Moc'ing %(Identity)... 103 | .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName)\.;$(QTDIR)\include\Qt3DCore;$(QTDIR)\include\Qt3DAnimation;$(QTDIR)\include\Qt3DExtras;$(QTDIR)\include\Qt3DInput;$(QTDIR)\include\Qt3DLogic;$(QTDIR)\include\Qt3DRender;$(QTDIR)\include\Qt3DQuick;$(QTDIR)\include\Qt3DQuickAnimation;$(QTDIR)\include\Qt3DQuickExtras;$(QTDIR)\include\Qt3DQuickInput;$(QTDIR)\include\Qt3DQuickRender;$(QTDIR)\include\Qt3DQuickScene2D;$(QTDIR)\include\ActiveQt;$(QTDIR)\include\QtBluetooth;$(QTDIR)\include\QtConcurrent;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtDBus;$(QTDIR)\include\QtGamepad;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtHelp;$(QTDIR)\include\QtLocation;$(QTDIR)\include\QtMultimedia;$(QTDIR)\include\QtMultimediaWidgets;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtNfc;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtOpenGLExtensions;$(QTDIR)\include\QtPositioning;$(QTDIR)\include\QtPrintSupport;$(QTDIR)\include\QtQml;$(QTDIR)\include\QtQuick;$(QTDIR)\include\QtQuickWidgets;$(QTDIR)\include\QtQuickControls2;$(QTDIR)\include\QtQuickTest;$(QTDIR)\include\QtScxml;$(QTDIR)\include\QtSensors;$(QTDIR)\include\QtSerialBus;$(QTDIR)\include\QtSerialPort;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtSvg;$(QTDIR)\include\QtTest;$(QTDIR)\include\QtUiTools;$(QTDIR)\include\QtWebChannel;$(QTDIR)\include\QtWebSockets;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtWinExtras;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtXmlPatterns 104 | UNICODE;_UNICODE;WIN32;WIN64;QT_DLL;QT_NO_DEBUG;NDEBUG;QT_3DCORE_LIB;QT_3DANIMATION_LIB;QT_3DEXTRAS_LIB;QT_3DINPUT_LIB;QT_3DLOGIC_LIB;QT_3DRENDER_LIB;QT_3DQUICK_LIB;QT_3DQUICKANIMATION_LIB;QT_3DQUICKEXTRAS_LIB;QT_3DQUICKINPUT_LIB;QT_3DQUICKRENDER_LIB;QT_3DQUICKSCENE2D_LIB;QT_BLUETOOTH_LIB;QT_CONCURRENT_LIB;QT_CORE_LIB;QT_DBUS_LIB;QT_GAMEPAD_LIB;QT_GUI_LIB;QT_HELP_LIB;QT_LOCATION_LIB;QT_MULTIMEDIA_LIB;QT_MULTIMEDIAWIDGETS_LIB;QT_NETWORK_LIB;QT_NFC_LIB;QT_OPENGL_LIB;QT_OPENGLEXTENSIONS_LIB;QT_POSITIONING_LIB;QT_PRINTSUPPORT_LIB;QT_QML_LIB;QT_QUICK_LIB;QT_QUICKWIDGETS_LIB;QT_QUICKCONTROLS2_LIB;QT_QMLTEST_LIB;QT_SCXML_LIB;QT_SENSORS_LIB;QT_SERIALBUS_LIB;QT_SERIALPORT_LIB;QT_SQL_LIB;QT_SVG_LIB;QT_TESTLIB_LIB;QT_UITOOLS_LIB;QT_WEBCHANNEL_LIB;QT_WEBSOCKETS_LIB;QT_WIDGETS_LIB;QT_WINEXTRAS_LIB;QT_XML_LIB;QT_XMLPATTERNS_LIB 105 | 106 | 107 | Uic'ing %(Identity)... 108 | .\GeneratedFiles\ui_%(Filename).h 109 | 110 | 111 | Rcc'ing %(Identity)... 112 | .\GeneratedFiles\qrc_%(Filename).cpp 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | %(FullPath);%(AdditionalInputs) 127 | Rcc%27ing %(Identity)... 128 | .\GeneratedFiles\qrc_%(Filename).cpp;%(Outputs) 129 | "$(QTDIR)\bin\rcc.exe" -name "%(Filename)" -no-compress "%(FullPath)" -o .\GeneratedFiles\qrc_%(Filename).cpp 130 | %(FullPath);%(AdditionalInputs) 131 | Rcc%27ing %(Identity)... 132 | .\GeneratedFiles\qrc_%(Filename).cpp;%(Outputs) 133 | "$(QTDIR)\bin\rcc.exe" -name "%(Filename)" -no-compress "%(FullPath)" -o .\GeneratedFiles\qrc_%(Filename).cpp 134 | 135 | 136 | 137 | 138 | {e9efd6bd-245d-46fc-861a-9753b58106f0} 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/DesignerStudio.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E} 10 | qrc;* 11 | false 12 | 13 | 14 | {D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E} 15 | qrc;* 16 | false 17 | 18 | 19 | {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11} 20 | moc;h;cpp 21 | False 22 | 23 | 24 | {58c8e5f2-aad5-4513-829f-fd333eacc1c3} 25 | cpp;moc 26 | False 27 | 28 | 29 | {c9705334-3840-417a-bc49-48a8ba612c52} 30 | cpp;moc 31 | False 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Generated Files 40 | 41 | 42 | 43 | 44 | Resource Files 45 | 46 | 47 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/DesignerStudio.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 6 | PATH=$(QTDIR)\bin%3b$(PATH) 7 | 8 | 9 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 10 | PATH=$(QTDIR)\bin%3b$(PATH) 11 | 12 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/designer-studio-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/designer-studio-splash.png -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/main.cpp: -------------------------------------------------------------------------------- 1 | #include "Application.h" 2 | 3 | using namespace Studio::Softer; 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | //New Instance of application. 8 | Application app(argc, argv); 9 | 10 | //Indicating of product type 11 | auto product = Designer; 12 | 13 | //Set informations for the application. 14 | app.setProductType(product); 15 | app.setApplicationVersion("1.0.0.0"); 16 | app.setOrganizationName("StudioSofter"); 17 | app.setApplicationName("Designer Studio"); 18 | app.setApplicationIconPath(":/Icons/DesignerStudio.ico"); 19 | app.setOrganizationDomain("https://www.studiosofter.com"); 20 | app.setSplashScreenPath(":/SplashScreen/designer-studio-splash.png"); 21 | 22 | //Execute the application. 23 | return app.exec(); 24 | } -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | designer-studio-splash.png 4 | 5 | 6 | DesignerStudio.ico 7 | 8 | 9 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:36:57. 2 | 1>Projet "H:\Projets StudioSofter\DesignerStudio\DesignerStudio\DesignerStudio.vcxproj" sur le nœud 2 (Build cible(s)). 3 | 1>Link: 4 | DesignerStudio.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Debug\DesignerStudio.exe 5 | 1>Génération du projet "H:\Projets StudioSofter\DesignerStudio\DesignerStudio\DesignerStudio.vcxproj" terminée (Build cible(s)). 6 | 7 | La génération a réussi. 8 | 9 | Temps écoulé 00:00:00.12 10 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/DesignerStudio.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/DesignerStudio.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/main.obj -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/qrc_resources.obj -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:40:36. 2 | 1>Projet "H:\Projets StudioSofter\DesignerStudio\DesignerStudio\DesignerStudio.vcxproj" sur le nœud 3 (Build cible(s)). 3 | 1>Link: 4 | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:PROMPT /OUT:"H:\Projets StudioSofter\DesignerStudio\x64\Release\\DesignerStudio.exe" /NOLOGO /LIBPATH:C:\Qt\Qt5.9.2\5.9.2\msvc2017_64\lib qtmain.lib Qt53DCore.lib Qt53DAnimation.lib Qt53DExtras.lib Qt53DInput.lib Qt53DLogic.lib Qt53DRender.lib Qt53DQuick.lib Qt53DQuickAnimation.lib Qt53DQuickExtras.lib Qt53DQuickInput.lib Qt53DQuickRender.lib Qt53DQuickScene2D.lib Qt5AxContainer.lib Qt5AxBase.lib Qt5Bluetooth.lib Qt5Concurrent.lib Qt5Core.lib Qt5DBus.lib Qt5Gamepad.lib Qt5Gui.lib Qt5Help.lib Qt5Location.lib Qt5Multimedia.lib Qt5MultimediaWidgets.lib Qt5Network.lib Qt5Nfc.lib Qt5OpenGL.lib opengl32.lib glu32.lib Qt5OpenGLExtensions.lib Qt5Positioning.lib Qt5PrintSupport.lib Qt5Qml.lib Qt5Quick.lib Qt5QuickWidgets.lib Qt5QuickControls2.lib Qt5QuickTest.lib Qt5Scxml.lib Qt5Sensors.lib Qt5SerialBus.lib Qt5SerialPort.lib Qt5Sql.lib Qt5Svg.lib Qt5Test.lib Qt5UiTools.lib Qt5WebChannel.lib Qt5WebSockets.lib Qt5Widgets.lib Qt5WinExtras.lib Qt5Xml.lib Qt5XmlPatterns.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:"H:\Projets StudioSofter\DesignerStudio\x64\Release\DesignerStudio.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"H:\Projets StudioSofter\DesignerStudio\x64\Release\DesignerStudio.lib" /MACHINE:X64 x64\Release\qrc_resources.obj 5 | x64\Release\main.obj 6 | "H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.lib" 7 | DesignerStudio.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Release\DesignerStudio.exe 8 | 1>Génération du projet "H:\Projets StudioSofter\DesignerStudio\DesignerStudio\DesignerStudio.vcxproj" terminée (Build cible(s)). 9 | 10 | La génération a réussi. 11 | 12 | Temps écoulé 00:00:00.71 13 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/DesignerStudio.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/DesignerStudio.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/main.obj -------------------------------------------------------------------------------- /DesignerStudio/DesignerStudio/x64/Release/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/DesignerStudio/DesignerStudio/x64/Release/qrc_resources.obj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## BorderlessWindowQt-Modern-Gui 2 | Native borderless window for Windows OS. Allows to have a modern gui. 3 | 4 |
5 |
6 | 7 | 8 |
9 |
10 | 11 | ### Possibilities 12 | * Resizable 13 | * Draggable 14 | * Minimize animation 15 | * Maximize animation 16 | * Close animation 17 | * Shows system menu when you have click on the icon app 18 | * Aero snap support 19 | * Aero shake support 20 |
21 |
22 | 23 | ### Support or Contact 24 | 25 | [contact me](https://twitter.com/Moussa__Ball) if you have a problem with. 26 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls.sdf -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Studio.Softer.Controls", "Studio.Softer.Controls\Studio.Softer.Controls.vcxproj", "{B12702AD-ABFB-343A-A199-8E24837244A3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Release|x64 = Release|x64 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.ActiveCfg = Debug|x64 15 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.Build.0 = Debug|x64 16 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.ActiveCfg = Release|x64 17 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.Build.0 = Release|x64 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/ColorWheel.cpp: -------------------------------------------------------------------------------- 1 | #include "ColorWheel.h" 2 | 3 | Studio::Softer::Controls::ColorWheel::ColorWheel() 4 | { 5 | } -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/ColorWheel.h: -------------------------------------------------------------------------------- 1 | #ifndef __COLORWHEEL__H_ 2 | #define __COLORWHEEL__H_ 3 | 4 | #include "studiosoftercontrols_global.h" 5 | 6 | namespace Studio 7 | { 8 | namespace Softer 9 | { 10 | namespace Controls 11 | { 12 | class STUDIOSOFTERCONTROLS_EXPORT ColorWheel 13 | { 14 | public: 15 | ColorWheel(); 16 | }; 17 | } 18 | } 19 | } 20 | 21 | 22 | #endif -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/Studio.Softer.Controls.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | x64 7 | 8 | 9 | Release 10 | x64 11 | 12 | 13 | 14 | {CA629F88-867A-4263-A1F8-D0C1BF8D4F4D} 15 | Qt4VSv1.0 16 | 10.0.16299.0 17 | 18 | 19 | 20 | DynamicLibrary 21 | v140 22 | 23 | 24 | DynamicLibrary 25 | v140 26 | 27 | 28 | 29 | $(MSBuildProjectDirectory)\QtMsBuild 30 | 31 | 32 | $(SolutionDir)$(Platform)\$(Configuration)\ 33 | 34 | 35 | $(SolutionDir)$(Platform)\$(Configuration)\ 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | true 55 | UNICODE;_UNICODE;WIN32;WIN64;QT_DLL;QT_3DCORE_LIB;QT_3DANIMATION_LIB;QT_3DEXTRAS_LIB;QT_3DINPUT_LIB;QT_3DLOGIC_LIB;QT_3DRENDER_LIB;QT_3DQUICK_LIB;QT_3DQUICKANIMATION_LIB;QT_3DQUICKEXTRAS_LIB;QT_3DQUICKINPUT_LIB;QT_3DQUICKRENDER_LIB;QT_3DQUICKSCENE2D_LIB;QT_BLUETOOTH_LIB;QT_CONCURRENT_LIB;QT_CORE_LIB;QT_DBUS_LIB;QT_GAMEPAD_LIB;QT_GUI_LIB;QT_HELP_LIB;QT_LOCATION_LIB;QT_MULTIMEDIA_LIB;QT_MULTIMEDIAWIDGETS_LIB;QT_NETWORK_LIB;QT_NFC_LIB;QT_OPENGL_LIB;QT_OPENGLEXTENSIONS_LIB;QT_POSITIONING_LIB;QT_PRINTSUPPORT_LIB;QT_QML_LIB;QT_QUICK_LIB;QT_QUICKWIDGETS_LIB;QT_QUICKCONTROLS2_LIB;QT_QMLTEST_LIB;QT_SCXML_LIB;QT_SENSORS_LIB;QT_SERIALBUS_LIB;QT_SERIALPORT_LIB;QT_SQL_LIB;QT_SVG_LIB;QT_TESTLIB_LIB;QT_UITOOLS_LIB;QT_WEBCHANNEL_LIB;QT_WEBSOCKETS_LIB;QT_WIDGETS_LIB;QT_WINEXTRAS_LIB;QT_XML_LIB;QT_XMLPATTERNS_LIB;STUDIOSOFTERCONTROLS_LIB;%(PreprocessorDefinitions) 56 | .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);$(QTDIR)\include\Qt3DCore;$(QTDIR)\include\Qt3DAnimation;$(QTDIR)\include\Qt3DExtras;$(QTDIR)\include\Qt3DInput;$(QTDIR)\include\Qt3DLogic;$(QTDIR)\include\Qt3DRender;$(QTDIR)\include\Qt3DQuick;$(QTDIR)\include\Qt3DQuickAnimation;$(QTDIR)\include\Qt3DQuickExtras;$(QTDIR)\include\Qt3DQuickInput;$(QTDIR)\include\Qt3DQuickRender;$(QTDIR)\include\Qt3DQuickScene2D;$(QTDIR)\include\ActiveQt;$(QTDIR)\include\QtBluetooth;$(QTDIR)\include\QtConcurrent;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtDBus;$(QTDIR)\include\QtGamepad;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtHelp;$(QTDIR)\include\QtLocation;$(QTDIR)\include\QtMultimedia;$(QTDIR)\include\QtMultimediaWidgets;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtNfc;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtOpenGLExtensions;$(QTDIR)\include\QtPositioning;$(QTDIR)\include\QtPrintSupport;$(QTDIR)\include\QtQml;$(QTDIR)\include\QtQuick;$(QTDIR)\include\QtQuickWidgets;$(QTDIR)\include\QtQuickControls2;$(QTDIR)\include\QtQuickTest;$(QTDIR)\include\QtScxml;$(QTDIR)\include\QtSensors;$(QTDIR)\include\QtSerialBus;$(QTDIR)\include\QtSerialPort;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtSvg;$(QTDIR)\include\QtTest;$(QTDIR)\include\QtUiTools;$(QTDIR)\include\QtWebChannel;$(QTDIR)\include\QtWebSockets;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtWinExtras;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtXmlPatterns;%(AdditionalIncludeDirectories) 57 | Disabled 58 | ProgramDatabase 59 | MultiThreadedDebugDLL 60 | true 61 | 62 | 63 | Windows 64 | $(OutDir)\$(ProjectName).dll 65 | $(QTDIR)\lib;%(AdditionalLibraryDirectories) 66 | true 67 | qtmaind.lib;Qt53DCored.lib;Qt53DAnimationd.lib;Qt53DExtrasd.lib;Qt53DInputd.lib;Qt53DLogicd.lib;Qt53DRenderd.lib;Qt53DQuickd.lib;Qt53DQuickAnimationd.lib;Qt53DQuickExtrasd.lib;Qt53DQuickInputd.lib;Qt53DQuickRenderd.lib;Qt53DQuickScene2Dd.lib;Qt5AxContainerd.lib;Qt5AxBased.lib;Qt5Bluetoothd.lib;Qt5Concurrentd.lib;Qt5Cored.lib;Qt5DBusd.lib;Qt5Gamepadd.lib;Qt5Guid.lib;Qt5Helpd.lib;Qt5Locationd.lib;Qt5Multimediad.lib;Qt5MultimediaWidgetsd.lib;Qt5Networkd.lib;Qt5Nfcd.lib;Qt5OpenGLd.lib;opengl32.lib;glu32.lib;Qt5OpenGLExtensionsd.lib;Qt5Positioningd.lib;Qt5PrintSupportd.lib;Qt5Qmld.lib;Qt5Quickd.lib;Qt5QuickWidgetsd.lib;Qt5QuickControls2d.lib;Qt5QuickTestd.lib;Qt5Scxmld.lib;Qt5Sensorsd.lib;Qt5SerialBusd.lib;Qt5SerialPortd.lib;Qt5Sqld.lib;Qt5Svgd.lib;Qt5Testd.lib;Qt5UiToolsd.lib;Qt5WebChanneld.lib;Qt5WebSocketsd.lib;Qt5Widgetsd.lib;Qt5WinExtrasd.lib;Qt5Xmld.lib;Qt5XmlPatternsd.lib;%(AdditionalDependencies) 68 | 69 | 70 | Rcc'ing %(Identity)... 71 | .\GeneratedFiles\qrc_%(Filename).cpp 72 | 73 | 74 | 75 | 76 | true 77 | UNICODE;_UNICODE;WIN32;WIN64;QT_DLL;QT_NO_DEBUG;NDEBUG;QT_3DCORE_LIB;QT_3DANIMATION_LIB;QT_3DEXTRAS_LIB;QT_3DINPUT_LIB;QT_3DLOGIC_LIB;QT_3DRENDER_LIB;QT_3DQUICK_LIB;QT_3DQUICKANIMATION_LIB;QT_3DQUICKEXTRAS_LIB;QT_3DQUICKINPUT_LIB;QT_3DQUICKRENDER_LIB;QT_3DQUICKSCENE2D_LIB;QT_BLUETOOTH_LIB;QT_CONCURRENT_LIB;QT_CORE_LIB;QT_DBUS_LIB;QT_GAMEPAD_LIB;QT_GUI_LIB;QT_HELP_LIB;QT_LOCATION_LIB;QT_MULTIMEDIA_LIB;QT_MULTIMEDIAWIDGETS_LIB;QT_NETWORK_LIB;QT_NFC_LIB;QT_OPENGL_LIB;QT_OPENGLEXTENSIONS_LIB;QT_POSITIONING_LIB;QT_PRINTSUPPORT_LIB;QT_QML_LIB;QT_QUICK_LIB;QT_QUICKWIDGETS_LIB;QT_QUICKCONTROLS2_LIB;QT_QMLTEST_LIB;QT_SCXML_LIB;QT_SENSORS_LIB;QT_SERIALBUS_LIB;QT_SERIALPORT_LIB;QT_SQL_LIB;QT_SVG_LIB;QT_TESTLIB_LIB;QT_UITOOLS_LIB;QT_WEBCHANNEL_LIB;QT_WEBSOCKETS_LIB;QT_WIDGETS_LIB;QT_WINEXTRAS_LIB;QT_XML_LIB;QT_XMLPATTERNS_LIB;STUDIOSOFTERCONTROLS_LIB;%(PreprocessorDefinitions) 78 | .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);$(QTDIR)\include\Qt3DCore;$(QTDIR)\include\Qt3DAnimation;$(QTDIR)\include\Qt3DExtras;$(QTDIR)\include\Qt3DInput;$(QTDIR)\include\Qt3DLogic;$(QTDIR)\include\Qt3DRender;$(QTDIR)\include\Qt3DQuick;$(QTDIR)\include\Qt3DQuickAnimation;$(QTDIR)\include\Qt3DQuickExtras;$(QTDIR)\include\Qt3DQuickInput;$(QTDIR)\include\Qt3DQuickRender;$(QTDIR)\include\Qt3DQuickScene2D;$(QTDIR)\include\ActiveQt;$(QTDIR)\include\QtBluetooth;$(QTDIR)\include\QtConcurrent;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtDBus;$(QTDIR)\include\QtGamepad;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtHelp;$(QTDIR)\include\QtLocation;$(QTDIR)\include\QtMultimedia;$(QTDIR)\include\QtMultimediaWidgets;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtNfc;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtOpenGLExtensions;$(QTDIR)\include\QtPositioning;$(QTDIR)\include\QtPrintSupport;$(QTDIR)\include\QtQml;$(QTDIR)\include\QtQuick;$(QTDIR)\include\QtQuickWidgets;$(QTDIR)\include\QtQuickControls2;$(QTDIR)\include\QtQuickTest;$(QTDIR)\include\QtScxml;$(QTDIR)\include\QtSensors;$(QTDIR)\include\QtSerialBus;$(QTDIR)\include\QtSerialPort;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtSvg;$(QTDIR)\include\QtTest;$(QTDIR)\include\QtUiTools;$(QTDIR)\include\QtWebChannel;$(QTDIR)\include\QtWebSockets;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtWinExtras;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtXmlPatterns;%(AdditionalIncludeDirectories) 79 | 80 | MultiThreadedDLL 81 | true 82 | 83 | 84 | Windows 85 | $(OutDir)\$(ProjectName).dll 86 | $(QTDIR)\lib;%(AdditionalLibraryDirectories) 87 | false 88 | qtmain.lib;Qt53DCore.lib;Qt53DAnimation.lib;Qt53DExtras.lib;Qt53DInput.lib;Qt53DLogic.lib;Qt53DRender.lib;Qt53DQuick.lib;Qt53DQuickAnimation.lib;Qt53DQuickExtras.lib;Qt53DQuickInput.lib;Qt53DQuickRender.lib;Qt53DQuickScene2D.lib;Qt5AxContainer.lib;Qt5AxBase.lib;Qt5Bluetooth.lib;Qt5Concurrent.lib;Qt5Core.lib;Qt5DBus.lib;Qt5Gamepad.lib;Qt5Gui.lib;Qt5Help.lib;Qt5Location.lib;Qt5Multimedia.lib;Qt5MultimediaWidgets.lib;Qt5Network.lib;Qt5Nfc.lib;Qt5OpenGL.lib;opengl32.lib;glu32.lib;Qt5OpenGLExtensions.lib;Qt5Positioning.lib;Qt5PrintSupport.lib;Qt5Qml.lib;Qt5Quick.lib;Qt5QuickWidgets.lib;Qt5QuickControls2.lib;Qt5QuickTest.lib;Qt5Scxml.lib;Qt5Sensors.lib;Qt5SerialBus.lib;Qt5SerialPort.lib;Qt5Sql.lib;Qt5Svg.lib;Qt5Test.lib;Qt5UiTools.lib;Qt5WebChannel.lib;Qt5WebSockets.lib;Qt5Widgets.lib;Qt5WinExtras.lib;Qt5Xml.lib;Qt5XmlPatterns.lib;%(AdditionalDependencies) 89 | 90 | 91 | Rcc'ing %(Identity)... 92 | .\GeneratedFiles\qrc_%(Filename).cpp 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/Studio.Softer.Controls.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Header Files 6 | 7 | 8 | Generated Files 9 | 10 | 11 | 12 | 13 | {782cf2c6-0d40-4c2e-8440-eeec1f382120} 14 | 15 | 16 | {9b254c27-16b4-48b5-a447-6029d250084a} 17 | 18 | 19 | {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11} 20 | moc;h;cpp 21 | true 22 | 23 | 24 | 25 | 26 | Source Files 27 | 28 | 29 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/Studio.Softer.Controls.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 6 | PATH=$(QTDIR)\bin%3b$(PATH) 7 | 8 | 9 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 10 | PATH=$(QTDIR)\bin%3b$(PATH) 11 | 12 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/studiosoftercontrols_global.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #ifndef BUILD_STATIC 6 | # if defined(STUDIOSOFTERCONTROLS_LIB) 7 | # define STUDIOSOFTERCONTROLS_EXPORT Q_DECL_EXPORT 8 | # else 9 | # define STUDIOSOFTERCONTROLS_EXPORT Q_DECL_IMPORT 10 | # endif 11 | #else 12 | # define STUDIOSOFTERCONTROLS_EXPORT 13 | #endif 14 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/Studio.Softer.Controls.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|x64|C:\Users\Moussa Ball\Documents\Visual Studio 2015\Qt Projects\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/Studio.Softer.Controls.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/Studio.Softer.Controls.write.1u.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.S.CA629F88.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/Studio.Softer.Controls.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 06/06/2018 11:11:06. 2 | 1>Projet "C:\Users\Moussa Ball\Documents\Visual Studio 2015\Qt Projects\Studio.Softer.Controls\Studio.Softer.Controls\Studio.Softer.Controls.vcxproj" sur le nœud 2 (Build cible(s)). 3 | 1>Link: 4 | Studio.Softer.Controls.vcxproj -> C:\Users\Moussa Ball\Documents\Visual Studio 2015\Qt Projects\DesignerStudio\x64\Debug\Studio.Softer.Controls.dll 5 | 1>Génération du projet "C:\Users\Moussa Ball\Documents\Visual Studio 2015\Qt Projects\Studio.Softer.Controls\Studio.Softer.Controls\Studio.Softer.Controls.vcxproj" terminée (Build cible(s)). 6 | 7 | La génération a réussi. 8 | 9 | Temps écoulé 00:00:00.30 10 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Debug/qrc_resources.obj -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/ColorWheel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/ColorWheel.obj -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/Studio.Softer.Controls.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/Studio.Softer.Controls.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/Studio.Softer.Controls.write.1u.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.S.CA629F88.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Controls/Studio.Softer.Controls/x64/Release/Studio.Softer.Controls.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:40:29. 2 | 1>Projet "H:\Projets StudioSofter\Studio.Softer.Controls\Studio.Softer.Controls\Studio.Softer.Controls.vcxproj" sur le nœud 3 (Build cible(s)). 3 | 1>Link: 4 | Studio.Softer.Controls.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.Controls.dll 5 | 1>Génération du projet "H:\Projets StudioSofter\Studio.Softer.Controls\Studio.Softer.Controls\Studio.Softer.Controls.vcxproj" terminée (Build cible(s)). 6 | 7 | La génération a réussi. 8 | 9 | Temps écoulé 00:00:00.14 10 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows.sdf -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Studio.Softer.Windows", "Studio.Softer.Windows\Studio.Softer.Windows.vcxproj", "{B12702AD-ABFB-343A-A199-8E24837244A3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Release|x64 = Release|x64 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.ActiveCfg = Debug|x64 15 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.Build.0 = Debug|x64 16 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.ActiveCfg = Release|x64 17 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.Build.0 = Release|x64 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/Designer.cpp: -------------------------------------------------------------------------------- 1 | #include "Designer.h" 2 | 3 | Studio::Softer::Windows::Designer::Designer(QWidget *parent) 4 | : QMainWindow(parent), ui(new Ui::Designer) 5 | { 6 | ui->setupUi(this); 7 | ui->toolBar->setMinimumHeight(40); 8 | ui->toolBarParams->setMinimumHeight(35); 9 | ui->toolBox->setMinimumWidth(40); 10 | ui->statusBar->setMinimumHeight(25); 11 | } 12 | 13 | Studio::Softer::Windows::Designer::~Designer() 14 | { 15 | delete ui; 16 | } 17 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/Designer.h: -------------------------------------------------------------------------------- 1 | #ifndef __DESIGNER__H_ 2 | #define __DESIGNER__H_ 3 | 4 | #include "studiosofterwindows_global.h" 5 | #include "ui_Designer.h" 6 | 7 | namespace Studio 8 | { 9 | namespace Softer 10 | { 11 | namespace Windows 12 | { 13 | class STUDIOSOFTERWINDOWS_EXPORT Designer : public QMainWindow 14 | { 15 | Q_OBJECT 16 | 17 | public: 18 | explicit Designer(QWidget *parent = Q_NULLPTR); 19 | ~Designer(); 20 | 21 | private: 22 | Ui::Designer *ui; 23 | }; 24 | } 25 | } 26 | } 27 | 28 | #endif -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/Designer.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | Designer 4 | 5 | 6 | 7 | 0 8 | 0 9 | 716 10 | 447 11 | 12 | 13 | 14 | Designer 15 | 16 | 17 | 18 | 19 | toolBar 20 | 21 | 22 | false 23 | 24 | 25 | Qt::TopToolBarArea 26 | 27 | 28 | false 29 | 30 | 31 | TopToolBarArea 32 | 33 | 34 | false 35 | 36 | 37 | 38 | 39 | toolBar_2 40 | 41 | 42 | false 43 | 44 | 45 | Qt::TopToolBarArea 46 | 47 | 48 | false 49 | 50 | 51 | TopToolBarArea 52 | 53 | 54 | true 55 | 56 | 57 | 58 | 59 | toolBar_2 60 | 61 | 62 | false 63 | 64 | 65 | Qt::LeftToolBarArea 66 | 67 | 68 | false 69 | 70 | 71 | LeftToolBarArea 72 | 73 | 74 | false 75 | 76 | 77 | 78 | 79 | false 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Debug/moc_Designer.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'Designer.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../Designer.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'Designer.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__Designer_t { 24 | QByteArrayData data[1]; 25 | char stringdata0[34]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__Designer_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__Designer_t qt_meta_stringdata_Studio__Softer__Windows__Designer = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 33) // "Studio::Softer::Windows::Desi..." 35 | 36 | }, 37 | "Studio::Softer::Windows::Designer" 38 | }; 39 | #undef QT_MOC_LITERAL 40 | 41 | static const uint qt_meta_data_Studio__Softer__Windows__Designer[] = { 42 | 43 | // content: 44 | 7, // revision 45 | 0, // classname 46 | 0, 0, // classinfo 47 | 0, 0, // methods 48 | 0, 0, // properties 49 | 0, 0, // enums/sets 50 | 0, 0, // constructors 51 | 0, // flags 52 | 0, // signalCount 53 | 54 | 0 // eod 55 | }; 56 | 57 | void Studio::Softer::Windows::Designer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 58 | { 59 | Q_UNUSED(_o); 60 | Q_UNUSED(_id); 61 | Q_UNUSED(_c); 62 | Q_UNUSED(_a); 63 | } 64 | 65 | const QMetaObject Studio::Softer::Windows::Designer::staticMetaObject = { 66 | { &QMainWindow::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__Designer.data, 67 | qt_meta_data_Studio__Softer__Windows__Designer, qt_static_metacall, nullptr, nullptr} 68 | }; 69 | 70 | 71 | const QMetaObject *Studio::Softer::Windows::Designer::metaObject() const 72 | { 73 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 74 | } 75 | 76 | void *Studio::Softer::Windows::Designer::qt_metacast(const char *_clname) 77 | { 78 | if (!_clname) return nullptr; 79 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__Designer.stringdata0)) 80 | return static_cast(this); 81 | return QMainWindow::qt_metacast(_clname); 82 | } 83 | 84 | int Studio::Softer::Windows::Designer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 85 | { 86 | _id = QMainWindow::qt_metacall(_c, _id, _a); 87 | return _id; 88 | } 89 | QT_WARNING_POP 90 | QT_END_MOC_NAMESPACE 91 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Debug/moc_TabBar.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'TabBar.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../TabBar.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'TabBar.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__TabItem_t { 24 | QByteArrayData data[1]; 25 | char stringdata0[33]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__TabItem_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__TabItem_t qt_meta_stringdata_Studio__Softer__Windows__TabItem = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 32) // "Studio::Softer::Windows::TabItem" 35 | 36 | }, 37 | "Studio::Softer::Windows::TabItem" 38 | }; 39 | #undef QT_MOC_LITERAL 40 | 41 | static const uint qt_meta_data_Studio__Softer__Windows__TabItem[] = { 42 | 43 | // content: 44 | 7, // revision 45 | 0, // classname 46 | 0, 0, // classinfo 47 | 0, 0, // methods 48 | 0, 0, // properties 49 | 0, 0, // enums/sets 50 | 0, 0, // constructors 51 | 0, // flags 52 | 0, // signalCount 53 | 54 | 0 // eod 55 | }; 56 | 57 | void Studio::Softer::Windows::TabItem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 58 | { 59 | Q_UNUSED(_o); 60 | Q_UNUSED(_id); 61 | Q_UNUSED(_c); 62 | Q_UNUSED(_a); 63 | } 64 | 65 | const QMetaObject Studio::Softer::Windows::TabItem::staticMetaObject = { 66 | { &QWidget::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__TabItem.data, 67 | qt_meta_data_Studio__Softer__Windows__TabItem, qt_static_metacall, nullptr, nullptr} 68 | }; 69 | 70 | 71 | const QMetaObject *Studio::Softer::Windows::TabItem::metaObject() const 72 | { 73 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 74 | } 75 | 76 | void *Studio::Softer::Windows::TabItem::qt_metacast(const char *_clname) 77 | { 78 | if (!_clname) return nullptr; 79 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__TabItem.stringdata0)) 80 | return static_cast(this); 81 | return QWidget::qt_metacast(_clname); 82 | } 83 | 84 | int Studio::Softer::Windows::TabItem::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 85 | { 86 | _id = QWidget::qt_metacall(_c, _id, _a); 87 | return _id; 88 | } 89 | struct qt_meta_stringdata_Studio__Softer__Windows__TabBar_t { 90 | QByteArrayData data[12]; 91 | char stringdata0[115]; 92 | }; 93 | #define QT_MOC_LITERAL(idx, ofs, len) \ 94 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 95 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__TabBar_t, stringdata0) + ofs \ 96 | - idx * sizeof(QByteArrayData)) \ 97 | ) 98 | static const qt_meta_stringdata_Studio__Softer__Windows__TabBar_t qt_meta_stringdata_Studio__Softer__Windows__TabBar = { 99 | { 100 | QT_MOC_LITERAL(0, 0, 31), // "Studio::Softer::Windows::TabBar" 101 | QT_MOC_LITERAL(1, 32, 8), // "tabMoved" 102 | QT_MOC_LITERAL(2, 41, 0), // "" 103 | QT_MOC_LITERAL(3, 42, 10), // "tabClicked" 104 | QT_MOC_LITERAL(4, 53, 6), // "addTab" 105 | QT_MOC_LITERAL(5, 60, 4), // "icon" 106 | QT_MOC_LITERAL(6, 65, 7), // "toolTip" 107 | QT_MOC_LITERAL(7, 73, 9), // "insertTab" 108 | QT_MOC_LITERAL(8, 83, 5), // "index" 109 | QT_MOC_LITERAL(9, 89, 9), // "removeTab" 110 | QT_MOC_LITERAL(10, 99, 7), // "hideTab" 111 | QT_MOC_LITERAL(11, 107, 7) // "showTab" 112 | 113 | }, 114 | "Studio::Softer::Windows::TabBar\0" 115 | "tabMoved\0\0tabClicked\0addTab\0icon\0" 116 | "toolTip\0insertTab\0index\0removeTab\0" 117 | "hideTab\0showTab" 118 | }; 119 | #undef QT_MOC_LITERAL 120 | 121 | static const uint qt_meta_data_Studio__Softer__Windows__TabBar[] = { 122 | 123 | // content: 124 | 7, // revision 125 | 0, // classname 126 | 0, 0, // classinfo 127 | 9, 14, // methods 128 | 0, 0, // properties 129 | 0, 0, // enums/sets 130 | 0, 0, // constructors 131 | 0, // flags 132 | 2, // signalCount 133 | 134 | // signals: name, argc, parameters, tag, flags 135 | 1, 2, 59, 2, 0x06 /* Public */, 136 | 3, 1, 64, 2, 0x06 /* Public */, 137 | 138 | // slots: name, argc, parameters, tag, flags 139 | 4, 2, 67, 2, 0x0a /* Public */, 140 | 4, 1, 72, 2, 0x2a /* Public | MethodCloned */, 141 | 7, 3, 75, 2, 0x0a /* Public */, 142 | 7, 2, 82, 2, 0x2a /* Public | MethodCloned */, 143 | 9, 1, 87, 2, 0x0a /* Public */, 144 | 10, 1, 90, 2, 0x0a /* Public */, 145 | 11, 1, 93, 2, 0x0a /* Public */, 146 | 147 | // signals: parameters 148 | QMetaType::Void, QMetaType::Int, QMetaType::Int, 2, 2, 149 | QMetaType::Void, QMetaType::Int, 2, 150 | 151 | // slots: parameters 152 | QMetaType::Void, QMetaType::QIcon, QMetaType::QString, 5, 6, 153 | QMetaType::Void, QMetaType::QIcon, 5, 154 | QMetaType::Void, QMetaType::QIcon, QMetaType::Int, QMetaType::QString, 5, 8, 6, 155 | QMetaType::Void, QMetaType::QIcon, QMetaType::Int, 5, 8, 156 | QMetaType::Void, QMetaType::Int, 8, 157 | QMetaType::Void, QMetaType::Int, 8, 158 | QMetaType::Void, QMetaType::Int, 8, 159 | 160 | 0 // eod 161 | }; 162 | 163 | void Studio::Softer::Windows::TabBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 164 | { 165 | if (_c == QMetaObject::InvokeMetaMethod) { 166 | TabBar *_t = static_cast(_o); 167 | Q_UNUSED(_t) 168 | switch (_id) { 169 | case 0: _t->tabMoved((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; 170 | case 1: _t->tabClicked((*reinterpret_cast< int(*)>(_a[1]))); break; 171 | case 2: _t->addTab((*reinterpret_cast< QIcon(*)>(_a[1])),(*reinterpret_cast< QString(*)>(_a[2]))); break; 172 | case 3: _t->addTab((*reinterpret_cast< QIcon(*)>(_a[1]))); break; 173 | case 4: _t->insertTab((*reinterpret_cast< QIcon(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< QString(*)>(_a[3]))); break; 174 | case 5: _t->insertTab((*reinterpret_cast< QIcon(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; 175 | case 6: _t->removeTab((*reinterpret_cast< int(*)>(_a[1]))); break; 176 | case 7: _t->hideTab((*reinterpret_cast< int(*)>(_a[1]))); break; 177 | case 8: _t->showTab((*reinterpret_cast< int(*)>(_a[1]))); break; 178 | default: ; 179 | } 180 | } else if (_c == QMetaObject::IndexOfMethod) { 181 | int *result = reinterpret_cast(_a[0]); 182 | void **func = reinterpret_cast(_a[1]); 183 | { 184 | typedef void (TabBar::*_t)(int , int ); 185 | if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&TabBar::tabMoved)) { 186 | *result = 0; 187 | return; 188 | } 189 | } 190 | { 191 | typedef void (TabBar::*_t)(int ); 192 | if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&TabBar::tabClicked)) { 193 | *result = 1; 194 | return; 195 | } 196 | } 197 | } 198 | } 199 | 200 | const QMetaObject Studio::Softer::Windows::TabBar::staticMetaObject = { 201 | { &QWidget::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__TabBar.data, 202 | qt_meta_data_Studio__Softer__Windows__TabBar, qt_static_metacall, nullptr, nullptr} 203 | }; 204 | 205 | 206 | const QMetaObject *Studio::Softer::Windows::TabBar::metaObject() const 207 | { 208 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 209 | } 210 | 211 | void *Studio::Softer::Windows::TabBar::qt_metacast(const char *_clname) 212 | { 213 | if (!_clname) return nullptr; 214 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__TabBar.stringdata0)) 215 | return static_cast(this); 216 | return QWidget::qt_metacast(_clname); 217 | } 218 | 219 | int Studio::Softer::Windows::TabBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 220 | { 221 | _id = QWidget::qt_metacall(_c, _id, _a); 222 | if (_id < 0) 223 | return _id; 224 | if (_c == QMetaObject::InvokeMetaMethod) { 225 | if (_id < 9) 226 | qt_static_metacall(this, _c, _id, _a); 227 | _id -= 9; 228 | } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { 229 | if (_id < 9) 230 | *reinterpret_cast(_a[0]) = -1; 231 | _id -= 9; 232 | } 233 | return _id; 234 | } 235 | 236 | // SIGNAL 0 237 | void Studio::Softer::Windows::TabBar::tabMoved(int _t1, int _t2) 238 | { 239 | void *_a[] = { nullptr, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; 240 | QMetaObject::activate(this, &staticMetaObject, 0, _a); 241 | } 242 | 243 | // SIGNAL 1 244 | void Studio::Softer::Windows::TabBar::tabClicked(int _t1) 245 | { 246 | void *_a[] = { nullptr, const_cast(reinterpret_cast(&_t1)) }; 247 | QMetaObject::activate(this, &staticMetaObject, 1, _a); 248 | } 249 | QT_WARNING_POP 250 | QT_END_MOC_NAMESPACE 251 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Debug/moc_ToolHost.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'ToolHost.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../ToolHost.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'ToolHost.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__ToolHost_t { 24 | QByteArrayData data[1]; 25 | char stringdata0[34]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__ToolHost_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__ToolHost_t qt_meta_stringdata_Studio__Softer__Windows__ToolHost = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 33) // "Studio::Softer::Windows::Tool..." 35 | 36 | }, 37 | "Studio::Softer::Windows::ToolHost" 38 | }; 39 | #undef QT_MOC_LITERAL 40 | 41 | static const uint qt_meta_data_Studio__Softer__Windows__ToolHost[] = { 42 | 43 | // content: 44 | 7, // revision 45 | 0, // classname 46 | 0, 0, // classinfo 47 | 0, 0, // methods 48 | 0, 0, // properties 49 | 0, 0, // enums/sets 50 | 0, 0, // constructors 51 | 0, // flags 52 | 0, // signalCount 53 | 54 | 0 // eod 55 | }; 56 | 57 | void Studio::Softer::Windows::ToolHost::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 58 | { 59 | Q_UNUSED(_o); 60 | Q_UNUSED(_id); 61 | Q_UNUSED(_c); 62 | Q_UNUSED(_a); 63 | } 64 | 65 | const QMetaObject Studio::Softer::Windows::ToolHost::staticMetaObject = { 66 | { &QFrame::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__ToolHost.data, 67 | qt_meta_data_Studio__Softer__Windows__ToolHost, qt_static_metacall, nullptr, nullptr} 68 | }; 69 | 70 | 71 | const QMetaObject *Studio::Softer::Windows::ToolHost::metaObject() const 72 | { 73 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 74 | } 75 | 76 | void *Studio::Softer::Windows::ToolHost::qt_metacast(const char *_clname) 77 | { 78 | if (!_clname) return nullptr; 79 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__ToolHost.stringdata0)) 80 | return static_cast(this); 81 | return QFrame::qt_metacast(_clname); 82 | } 83 | 84 | int Studio::Softer::Windows::ToolHost::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 85 | { 86 | _id = QFrame::qt_metacall(_c, _id, _a); 87 | return _id; 88 | } 89 | QT_WARNING_POP 90 | QT_END_MOC_NAMESPACE 91 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Debug/moc_WinHost.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'WinHost.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../WinHost.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'WinHost.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__WinHost_t { 24 | QByteArrayData data[1]; 25 | char stringdata0[33]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__WinHost_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__WinHost_t qt_meta_stringdata_Studio__Softer__Windows__WinHost = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 32) // "Studio::Softer::Windows::WinHost" 35 | 36 | }, 37 | "Studio::Softer::Windows::WinHost" 38 | }; 39 | #undef QT_MOC_LITERAL 40 | 41 | static const uint qt_meta_data_Studio__Softer__Windows__WinHost[] = { 42 | 43 | // content: 44 | 7, // revision 45 | 0, // classname 46 | 0, 0, // classinfo 47 | 0, 0, // methods 48 | 0, 0, // properties 49 | 0, 0, // enums/sets 50 | 0, 0, // constructors 51 | 0, // flags 52 | 0, // signalCount 53 | 54 | 0 // eod 55 | }; 56 | 57 | void Studio::Softer::Windows::WinHost::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 58 | { 59 | Q_UNUSED(_o); 60 | Q_UNUSED(_id); 61 | Q_UNUSED(_c); 62 | Q_UNUSED(_a); 63 | } 64 | 65 | const QMetaObject Studio::Softer::Windows::WinHost::staticMetaObject = { 66 | { &QMainWindow::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__WinHost.data, 67 | qt_meta_data_Studio__Softer__Windows__WinHost, qt_static_metacall, nullptr, nullptr} 68 | }; 69 | 70 | 71 | const QMetaObject *Studio::Softer::Windows::WinHost::metaObject() const 72 | { 73 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 74 | } 75 | 76 | void *Studio::Softer::Windows::WinHost::qt_metacast(const char *_clname) 77 | { 78 | if (!_clname) return nullptr; 79 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__WinHost.stringdata0)) 80 | return static_cast(this); 81 | return QMainWindow::qt_metacast(_clname); 82 | } 83 | 84 | int Studio::Softer::Windows::WinHost::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 85 | { 86 | _id = QMainWindow::qt_metacall(_c, _id, _a); 87 | return _id; 88 | } 89 | QT_WARNING_POP 90 | QT_END_MOC_NAMESPACE 91 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Debug/moc_Window.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'Window.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../Window.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'Window.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__Window_t { 24 | QByteArrayData data[7]; 25 | char stringdata0[111]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__Window_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__Window_t qt_meta_stringdata_Studio__Softer__Windows__Window = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 31), // "Studio::Softer::Windows::Window" 35 | QT_MOC_LITERAL(1, 32, 21), // "slot_show_system_menu" 36 | QT_MOC_LITERAL(2, 54, 0), // "" 37 | QT_MOC_LITERAL(3, 55, 14), // "slot_minimized" 38 | QT_MOC_LITERAL(4, 70, 14), // "slot_maximized" 39 | QT_MOC_LITERAL(5, 85, 13), // "slot_restored" 40 | QT_MOC_LITERAL(6, 99, 11) // "slot_closed" 41 | 42 | }, 43 | "Studio::Softer::Windows::Window\0" 44 | "slot_show_system_menu\0\0slot_minimized\0" 45 | "slot_maximized\0slot_restored\0slot_closed" 46 | }; 47 | #undef QT_MOC_LITERAL 48 | 49 | static const uint qt_meta_data_Studio__Softer__Windows__Window[] = { 50 | 51 | // content: 52 | 7, // revision 53 | 0, // classname 54 | 0, 0, // classinfo 55 | 5, 14, // methods 56 | 0, 0, // properties 57 | 0, 0, // enums/sets 58 | 0, 0, // constructors 59 | 0, // flags 60 | 0, // signalCount 61 | 62 | // slots: name, argc, parameters, tag, flags 63 | 1, 0, 39, 2, 0x08 /* Private */, 64 | 3, 0, 40, 2, 0x08 /* Private */, 65 | 4, 0, 41, 2, 0x08 /* Private */, 66 | 5, 0, 42, 2, 0x08 /* Private */, 67 | 6, 0, 43, 2, 0x08 /* Private */, 68 | 69 | // slots: parameters 70 | QMetaType::Void, 71 | QMetaType::Void, 72 | QMetaType::Void, 73 | QMetaType::Void, 74 | QMetaType::Void, 75 | 76 | 0 // eod 77 | }; 78 | 79 | void Studio::Softer::Windows::Window::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 80 | { 81 | if (_c == QMetaObject::InvokeMetaMethod) { 82 | Window *_t = static_cast(_o); 83 | Q_UNUSED(_t) 84 | switch (_id) { 85 | case 0: _t->slot_show_system_menu(); break; 86 | case 1: _t->slot_minimized(); break; 87 | case 2: _t->slot_maximized(); break; 88 | case 3: _t->slot_restored(); break; 89 | case 4: _t->slot_closed(); break; 90 | default: ; 91 | } 92 | } 93 | Q_UNUSED(_a); 94 | } 95 | 96 | const QMetaObject Studio::Softer::Windows::Window::staticMetaObject = { 97 | { &QMainWindow::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__Window.data, 98 | qt_meta_data_Studio__Softer__Windows__Window, qt_static_metacall, nullptr, nullptr} 99 | }; 100 | 101 | 102 | const QMetaObject *Studio::Softer::Windows::Window::metaObject() const 103 | { 104 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 105 | } 106 | 107 | void *Studio::Softer::Windows::Window::qt_metacast(const char *_clname) 108 | { 109 | if (!_clname) return nullptr; 110 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__Window.stringdata0)) 111 | return static_cast(this); 112 | return QMainWindow::qt_metacast(_clname); 113 | } 114 | 115 | int Studio::Softer::Windows::Window::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 116 | { 117 | _id = QMainWindow::qt_metacall(_c, _id, _a); 118 | if (_id < 0) 119 | return _id; 120 | if (_c == QMetaObject::InvokeMetaMethod) { 121 | if (_id < 5) 122 | qt_static_metacall(this, _c, _id, _a); 123 | _id -= 5; 124 | } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { 125 | if (_id < 5) 126 | *reinterpret_cast(_a[0]) = -1; 127 | _id -= 5; 128 | } 129 | return _id; 130 | } 131 | QT_WARNING_POP 132 | QT_END_MOC_NAMESPACE 133 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Release/moc_Designer.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'Designer.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../Designer.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'Designer.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__Designer_t { 24 | QByteArrayData data[1]; 25 | char stringdata0[34]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__Designer_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__Designer_t qt_meta_stringdata_Studio__Softer__Windows__Designer = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 33) // "Studio::Softer::Windows::Desi..." 35 | 36 | }, 37 | "Studio::Softer::Windows::Designer" 38 | }; 39 | #undef QT_MOC_LITERAL 40 | 41 | static const uint qt_meta_data_Studio__Softer__Windows__Designer[] = { 42 | 43 | // content: 44 | 7, // revision 45 | 0, // classname 46 | 0, 0, // classinfo 47 | 0, 0, // methods 48 | 0, 0, // properties 49 | 0, 0, // enums/sets 50 | 0, 0, // constructors 51 | 0, // flags 52 | 0, // signalCount 53 | 54 | 0 // eod 55 | }; 56 | 57 | void Studio::Softer::Windows::Designer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 58 | { 59 | Q_UNUSED(_o); 60 | Q_UNUSED(_id); 61 | Q_UNUSED(_c); 62 | Q_UNUSED(_a); 63 | } 64 | 65 | const QMetaObject Studio::Softer::Windows::Designer::staticMetaObject = { 66 | { &QMainWindow::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__Designer.data, 67 | qt_meta_data_Studio__Softer__Windows__Designer, qt_static_metacall, nullptr, nullptr} 68 | }; 69 | 70 | 71 | const QMetaObject *Studio::Softer::Windows::Designer::metaObject() const 72 | { 73 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 74 | } 75 | 76 | void *Studio::Softer::Windows::Designer::qt_metacast(const char *_clname) 77 | { 78 | if (!_clname) return nullptr; 79 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__Designer.stringdata0)) 80 | return static_cast(this); 81 | return QMainWindow::qt_metacast(_clname); 82 | } 83 | 84 | int Studio::Softer::Windows::Designer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 85 | { 86 | _id = QMainWindow::qt_metacall(_c, _id, _a); 87 | return _id; 88 | } 89 | QT_WARNING_POP 90 | QT_END_MOC_NAMESPACE 91 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/Release/moc_Window.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'Window.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.2) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../../Window.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'Window.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.9.2. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | QT_WARNING_PUSH 22 | QT_WARNING_DISABLE_DEPRECATED 23 | struct qt_meta_stringdata_Studio__Softer__Windows__Window_t { 24 | QByteArrayData data[7]; 25 | char stringdata0[111]; 26 | }; 27 | #define QT_MOC_LITERAL(idx, ofs, len) \ 28 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 29 | qptrdiff(offsetof(qt_meta_stringdata_Studio__Softer__Windows__Window_t, stringdata0) + ofs \ 30 | - idx * sizeof(QByteArrayData)) \ 31 | ) 32 | static const qt_meta_stringdata_Studio__Softer__Windows__Window_t qt_meta_stringdata_Studio__Softer__Windows__Window = { 33 | { 34 | QT_MOC_LITERAL(0, 0, 31), // "Studio::Softer::Windows::Window" 35 | QT_MOC_LITERAL(1, 32, 21), // "slot_show_system_menu" 36 | QT_MOC_LITERAL(2, 54, 0), // "" 37 | QT_MOC_LITERAL(3, 55, 14), // "slot_minimized" 38 | QT_MOC_LITERAL(4, 70, 14), // "slot_maximized" 39 | QT_MOC_LITERAL(5, 85, 13), // "slot_restored" 40 | QT_MOC_LITERAL(6, 99, 11) // "slot_closed" 41 | 42 | }, 43 | "Studio::Softer::Windows::Window\0" 44 | "slot_show_system_menu\0\0slot_minimized\0" 45 | "slot_maximized\0slot_restored\0slot_closed" 46 | }; 47 | #undef QT_MOC_LITERAL 48 | 49 | static const uint qt_meta_data_Studio__Softer__Windows__Window[] = { 50 | 51 | // content: 52 | 7, // revision 53 | 0, // classname 54 | 0, 0, // classinfo 55 | 5, 14, // methods 56 | 0, 0, // properties 57 | 0, 0, // enums/sets 58 | 0, 0, // constructors 59 | 0, // flags 60 | 0, // signalCount 61 | 62 | // slots: name, argc, parameters, tag, flags 63 | 1, 0, 39, 2, 0x08 /* Private */, 64 | 3, 0, 40, 2, 0x08 /* Private */, 65 | 4, 0, 41, 2, 0x08 /* Private */, 66 | 5, 0, 42, 2, 0x08 /* Private */, 67 | 6, 0, 43, 2, 0x08 /* Private */, 68 | 69 | // slots: parameters 70 | QMetaType::Void, 71 | QMetaType::Void, 72 | QMetaType::Void, 73 | QMetaType::Void, 74 | QMetaType::Void, 75 | 76 | 0 // eod 77 | }; 78 | 79 | void Studio::Softer::Windows::Window::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 80 | { 81 | if (_c == QMetaObject::InvokeMetaMethod) { 82 | Window *_t = static_cast(_o); 83 | Q_UNUSED(_t) 84 | switch (_id) { 85 | case 0: _t->slot_show_system_menu(); break; 86 | case 1: _t->slot_minimized(); break; 87 | case 2: _t->slot_maximized(); break; 88 | case 3: _t->slot_restored(); break; 89 | case 4: _t->slot_closed(); break; 90 | default: ; 91 | } 92 | } 93 | Q_UNUSED(_a); 94 | } 95 | 96 | const QMetaObject Studio::Softer::Windows::Window::staticMetaObject = { 97 | { &QMainWindow::staticMetaObject, qt_meta_stringdata_Studio__Softer__Windows__Window.data, 98 | qt_meta_data_Studio__Softer__Windows__Window, qt_static_metacall, nullptr, nullptr} 99 | }; 100 | 101 | 102 | const QMetaObject *Studio::Softer::Windows::Window::metaObject() const 103 | { 104 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 105 | } 106 | 107 | void *Studio::Softer::Windows::Window::qt_metacast(const char *_clname) 108 | { 109 | if (!_clname) return nullptr; 110 | if (!strcmp(_clname, qt_meta_stringdata_Studio__Softer__Windows__Window.stringdata0)) 111 | return static_cast(this); 112 | return QMainWindow::qt_metacast(_clname); 113 | } 114 | 115 | int Studio::Softer::Windows::Window::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 116 | { 117 | _id = QMainWindow::qt_metacall(_c, _id, _a); 118 | if (_id < 0) 119 | return _id; 120 | if (_c == QMetaObject::InvokeMetaMethod) { 121 | if (_id < 5) 122 | qt_static_metacall(this, _c, _id, _a); 123 | _id -= 5; 124 | } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { 125 | if (_id < 5) 126 | *reinterpret_cast(_a[0]) = -1; 127 | _id -= 5; 128 | } 129 | return _id; 130 | } 131 | QT_WARNING_POP 132 | QT_END_MOC_NAMESPACE 133 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/qrc_resources.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Resource object code 3 | ** 4 | ** Created by: The Resource Compiler for Qt version 5.9.2 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #ifdef QT_NAMESPACE 10 | # define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name 11 | # define QT_RCC_MANGLE_NAMESPACE0(x) x 12 | # define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b 13 | # define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) 14 | # define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ 15 | QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) 16 | #else 17 | # define QT_RCC_PREPEND_NAMESPACE(name) name 18 | # define QT_RCC_MANGLE_NAMESPACE(name) name 19 | #endif 20 | 21 | #ifdef QT_NAMESPACE 22 | namespace QT_NAMESPACE { 23 | #endif 24 | 25 | #ifdef QT_NAMESPACE 26 | } 27 | #endif 28 | 29 | int QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)(); 30 | int QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)() 31 | { 32 | return 1; 33 | } 34 | 35 | int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)(); 36 | int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)() 37 | { 38 | return 1; 39 | } 40 | 41 | namespace { 42 | struct initializer { 43 | initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)(); } 44 | ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)(); } 45 | } dummy; 46 | } 47 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/ui_Designer.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************** 2 | ** Form generated from reading UI file 'Designer.ui' 3 | ** 4 | ** Created by: Qt User Interface Compiler version 5.9.2 5 | ** 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! 7 | ********************************************************************************/ 8 | 9 | #ifndef UI_DESIGNER_H 10 | #define UI_DESIGNER_H 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | #include 21 | 22 | QT_BEGIN_NAMESPACE 23 | 24 | class Ui_Designer 25 | { 26 | public: 27 | QWidget *centralWidget; 28 | QToolBar *toolBar; 29 | QToolBar *toolBarParams; 30 | QToolBar *toolBox; 31 | QStatusBar *statusBar; 32 | 33 | void setupUi(QMainWindow *Designer) 34 | { 35 | if (Designer->objectName().isEmpty()) 36 | Designer->setObjectName(QStringLiteral("Designer")); 37 | Designer->resize(716, 447); 38 | centralWidget = new QWidget(Designer); 39 | centralWidget->setObjectName(QStringLiteral("centralWidget")); 40 | Designer->setCentralWidget(centralWidget); 41 | toolBar = new QToolBar(Designer); 42 | toolBar->setObjectName(QStringLiteral("toolBar")); 43 | toolBar->setMovable(false); 44 | toolBar->setAllowedAreas(Qt::TopToolBarArea); 45 | toolBar->setFloatable(false); 46 | Designer->addToolBar(Qt::TopToolBarArea, toolBar); 47 | toolBarParams = new QToolBar(Designer); 48 | toolBarParams->setObjectName(QStringLiteral("toolBarParams")); 49 | toolBarParams->setMovable(false); 50 | toolBarParams->setAllowedAreas(Qt::TopToolBarArea); 51 | toolBarParams->setFloatable(false); 52 | Designer->addToolBar(Qt::TopToolBarArea, toolBarParams); 53 | Designer->insertToolBarBreak(toolBarParams); 54 | toolBox = new QToolBar(Designer); 55 | toolBox->setObjectName(QStringLiteral("toolBox")); 56 | toolBox->setMovable(false); 57 | toolBox->setAllowedAreas(Qt::LeftToolBarArea); 58 | toolBox->setFloatable(false); 59 | Designer->addToolBar(Qt::LeftToolBarArea, toolBox); 60 | statusBar = new QStatusBar(Designer); 61 | statusBar->setObjectName(QStringLiteral("statusBar")); 62 | statusBar->setSizeGripEnabled(false); 63 | Designer->setStatusBar(statusBar); 64 | 65 | retranslateUi(Designer); 66 | 67 | QMetaObject::connectSlotsByName(Designer); 68 | } // setupUi 69 | 70 | void retranslateUi(QMainWindow *Designer) 71 | { 72 | Designer->setWindowTitle(QApplication::translate("Designer", "Designer", Q_NULLPTR)); 73 | toolBar->setWindowTitle(QApplication::translate("Designer", "toolBar", Q_NULLPTR)); 74 | toolBarParams->setWindowTitle(QApplication::translate("Designer", "toolBar_2", Q_NULLPTR)); 75 | toolBox->setWindowTitle(QApplication::translate("Designer", "toolBar_2", Q_NULLPTR)); 76 | } // retranslateUi 77 | 78 | }; 79 | 80 | namespace Ui { 81 | class Designer: public Ui_Designer {}; 82 | } // namespace Ui 83 | 84 | QT_END_NAMESPACE 85 | 86 | #endif // UI_DESIGNER_H 87 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/GeneratedFiles/ui_WinHost.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************** 2 | ** Form generated from reading UI file 'WinHost.ui' 3 | ** 4 | ** Created by: Qt User Interface Compiler version 5.9.2 5 | ** 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! 7 | ********************************************************************************/ 8 | 9 | #ifndef UI_WINHOST_H 10 | #define UI_WINHOST_H 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | #include 21 | 22 | QT_BEGIN_NAMESPACE 23 | 24 | class Ui_WinHost 25 | { 26 | public: 27 | QWidget *centralWidget; 28 | QToolBar *toolBar; 29 | QToolBar *toolBarParams; 30 | QToolBar *toolBox; 31 | QStatusBar *statusBar; 32 | 33 | void setupUi(QMainWindow *WinHost) 34 | { 35 | if (WinHost->objectName().isEmpty()) 36 | WinHost->setObjectName(QStringLiteral("WinHost")); 37 | WinHost->resize(713, 441); 38 | centralWidget = new QWidget(WinHost); 39 | centralWidget->setObjectName(QStringLiteral("centralWidget")); 40 | WinHost->setCentralWidget(centralWidget); 41 | toolBar = new QToolBar(WinHost); 42 | toolBar->setObjectName(QStringLiteral("toolBar")); 43 | toolBar->setMovable(false); 44 | toolBar->setAllowedAreas(Qt::TopToolBarArea); 45 | toolBar->setFloatable(false); 46 | WinHost->addToolBar(Qt::TopToolBarArea, toolBar); 47 | toolBarParams = new QToolBar(WinHost); 48 | toolBarParams->setObjectName(QStringLiteral("toolBarParams")); 49 | toolBarParams->setMovable(false); 50 | toolBarParams->setAllowedAreas(Qt::TopToolBarArea); 51 | toolBarParams->setFloatable(false); 52 | WinHost->addToolBar(Qt::TopToolBarArea, toolBarParams); 53 | WinHost->insertToolBarBreak(toolBarParams); 54 | toolBox = new QToolBar(WinHost); 55 | toolBox->setObjectName(QStringLiteral("toolBox")); 56 | toolBox->setMovable(false); 57 | toolBox->setAllowedAreas(Qt::LeftToolBarArea); 58 | toolBox->setFloatable(false); 59 | WinHost->addToolBar(Qt::LeftToolBarArea, toolBox); 60 | statusBar = new QStatusBar(WinHost); 61 | statusBar->setObjectName(QStringLiteral("statusBar")); 62 | statusBar->setSizeGripEnabled(false); 63 | WinHost->setStatusBar(statusBar); 64 | 65 | retranslateUi(WinHost); 66 | 67 | QMetaObject::connectSlotsByName(WinHost); 68 | } // setupUi 69 | 70 | void retranslateUi(QMainWindow *WinHost) 71 | { 72 | WinHost->setWindowTitle(QApplication::translate("WinHost", "WinHost", Q_NULLPTR)); 73 | toolBar->setWindowTitle(QApplication::translate("WinHost", "toolBar", Q_NULLPTR)); 74 | toolBarParams->setWindowTitle(QApplication::translate("WinHost", "toolBar_2", Q_NULLPTR)); 75 | toolBox->setWindowTitle(QApplication::translate("WinHost", "toolBar_3", Q_NULLPTR)); 76 | } // retranslateUi 77 | 78 | }; 79 | 80 | namespace Ui { 81 | class WinHost: public Ui_WinHost {}; 82 | } // namespace Ui 83 | 84 | QT_END_NAMESPACE 85 | 86 | #endif // UI_WINHOST_H 87 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/Studio.Softer.Windows.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Generated Files 6 | 7 | 8 | Generated Files 9 | 10 | 11 | 12 | 13 | {D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E} 14 | qrc;* 15 | false 16 | 17 | 18 | {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11} 19 | moc;h;cpp 20 | true 21 | 22 | 23 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 24 | h;hh;hpp;hxx;hm;inl;inc;xsd 25 | true 26 | 27 | 28 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 29 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 30 | true 31 | 32 | 33 | {5eed1ac1-b1f6-4f3e-ae95-fda3b78a32b5} 34 | cpp;moc 35 | False 36 | 37 | 38 | {171ff254-60cc-4c05-92cc-a3f41fc0776f} 39 | cpp;moc 40 | False 41 | 42 | 43 | {99349809-55BA-4b9d-BF79-8FDBB0286EB3} 44 | ui 45 | true 46 | 47 | 48 | 49 | 50 | Source Files 51 | 52 | 53 | Generated Files 54 | 55 | 56 | Generated Files\Debug 57 | 58 | 59 | Generated Files\Release 60 | 61 | 62 | Generated Files\Debug 63 | 64 | 65 | Generated Files\Release 66 | 67 | 68 | Source Files 69 | 70 | 71 | 72 | 73 | Resource Files 74 | 75 | 76 | Header Files 77 | 78 | 79 | Header Files 80 | 81 | 82 | Form Files 83 | 84 | 85 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/Studio.Softer.Windows.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 6 | PATH=$(QTDIR)\bin%3b$(PATH) 7 | 8 | 9 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 10 | PATH=$(QTDIR)\bin%3b$(PATH) 11 | 12 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/Window.h: -------------------------------------------------------------------------------- 1 | #ifndef __WINDOW__H_ 2 | #define __WINDOW__H_ 3 | 4 | #include "studiosofterwindows_global.h" 5 | 6 | #include 7 | #include 8 | 9 | namespace Studio 10 | { 11 | namespace Softer 12 | { 13 | namespace Windows 14 | { 15 | class STUDIOSOFTERWINDOWS_EXPORT Window : public QMainWindow 16 | { 17 | Q_OBJECT 18 | public: 19 | explicit Window(QMenuBar *menuBar); 20 | void setIcon(const QString &iconPath); 21 | void setapplicationName(const QString &appName); 22 | void setOrganizationName(const QString &orgName); 23 | void showWindow(); 24 | 25 | protected: 26 | bool nativeEvent(const QByteArray &eventType, void *message, long *result) override; 27 | void mousePressEvent(QMouseEvent *event) override; 28 | void closeEvent(QCloseEvent *event) override; 29 | void changeEvent(QEvent* e) override; 30 | 31 | private slots: 32 | void slot_show_system_menu() const; 33 | void slot_minimized(); 34 | void slot_maximized(); 35 | void slot_restored(); 36 | void slot_closed(); 37 | 38 | private: 39 | auto set_borderless(bool enabled) const -> void; 40 | QPushButton *minimize_button_; 41 | QPushButton *maximize_button_; 42 | QPushButton *restore_button_; 43 | QPushButton *close_Button_; 44 | QWidget *title_bar_widget_; 45 | QPushButton *icon_button_; 46 | QWidget *m_centralWidget; 47 | QString m_appIconPath; 48 | QPoint mouse_point_; 49 | QString m_appName; 50 | QString m_orgName; 51 | }; 52 | } 53 | } 54 | } 55 | 56 | 57 | #endif -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/studiosofterwindows_global.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #ifndef BUILD_STATIC 6 | # if defined(STUDIOSOFTERWINDOWS_LIB) 7 | # define STUDIOSOFTERWINDOWS_EXPORT Q_DECL_EXPORT 8 | # else 9 | # define STUDIOSOFTERWINDOWS_EXPORT Q_DECL_IMPORT 10 | # endif 11 | #else 12 | # define STUDIOSOFTERWINDOWS_EXPORT 13 | #endif 14 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Designer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Designer.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Helper.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Helper.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/Studio.Softer.Windows.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/Studio.Softer.Windows.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/Studio.Softer.Windows.write.1u.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.S.4D99AA7C.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Studio.Softer.Windows.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:36:57. 2 | 1>Projet "H:\Projets StudioSofter\Studio.Softer.Windows\Studio.Softer.Windows\Studio.Softer.Windows.vcxproj" sur le nœud 2 (Build cible(s)). 3 | 1>Link: 4 | Studio.Softer.Windows.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Debug\Studio.Softer.Windows.dll 5 | 1>Génération du projet "H:\Projets StudioSofter\Studio.Softer.Windows\Studio.Softer.Windows\Studio.Softer.Windows.vcxproj" terminée (Build cible(s)). 6 | 7 | La génération a réussi. 8 | 9 | Temps écoulé 00:00:00.13 10 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/TabBar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/TabBar.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolHost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolHost.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolPanel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolPanel.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolTray.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolTray.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolTrayPanel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/ToolTrayPanel.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/WinHost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/WinHost.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Window.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/Window.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_Designer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_Designer.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_TabBar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_TabBar.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolHost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolHost.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolPanel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolPanel.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolTray.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolTray.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolTrayPanel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_ToolTrayPanel.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_WinHost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_WinHost.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_Window.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/moc_Window.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/qrc_resources.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Designer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Designer.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/Studio.Softer.Windows.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/Studio.Softer.Windows.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/Studio.Softer.Windows.write.1u.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.S.4D99AA7C.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Studio.Softer.Windows.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:40:29. 2 | 1>Projet "H:\Projets StudioSofter\Studio.Softer.Windows\Studio.Softer.Windows\Studio.Softer.Windows.vcxproj" sur le nœud 2 (Build cible(s)). 3 | 1>Link: 4 | Studio.Softer.Windows.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.Windows.dll 5 | 1>Génération du projet "H:\Projets StudioSofter\Studio.Softer.Windows\Studio.Softer.Windows\Studio.Softer.Windows.vcxproj" terminée (Build cible(s)). 6 | 7 | La génération a réussi. 8 | 9 | Temps écoulé 00:00:00.24 10 | -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Window.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/Window.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/moc_Designer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/moc_Designer.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/moc_Window.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/moc_Window.obj -------------------------------------------------------------------------------- /Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer.Windows/Studio.Softer.Windows/x64/Release/qrc_resources.obj -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer.sdf -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Studio.Softer", "Studio.Softer\Studio.Softer.vcxproj", "{B12702AD-ABFB-343A-A199-8E24837244A3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Release|x64 = Release|x64 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.ActiveCfg = Debug|x64 15 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Debug|x64.Build.0 = Debug|x64 16 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.ActiveCfg = Release|x64 17 | {B12702AD-ABFB-343A-A199-8E24837244A3}.Release|x64.Build.0 = Release|x64 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/Application.cpp: -------------------------------------------------------------------------------- 1 | #include "Application.h" 2 | #include "Window.h" 3 | 4 | #include 5 | 6 | /** 7 | * \brief Allows to initialize a new application. 8 | * \param argc The integer(argc) of the main function. 9 | * \param argv The *char[] pointer of the main function. 10 | */ 11 | Studio::Softer::Application::Application(int argc, char *argv[]) : 12 | m_splashScreen(Q_NULLPTR), m_sharedMemory(Q_NULLPTR), m_application(Q_NULLPTR), 13 | m_menuBar(Q_NULLPTR) 14 | { 15 | //Initialize a new application. 16 | m_application = new QApplication(argc, argv); 17 | 18 | //Initialize a new shared memory. 19 | m_sharedMemory = new QSharedMemory("{cca65ba4-6e42-4997-99a3-7e143aaf83b5}"); 20 | 21 | //Enables high-DPI scaling on windows. 22 | m_application->setAttribute(Qt::AA_EnableHighDpiScaling); 23 | //Allows to use pixmap sizes in layout geometry. 24 | //Calculations should typically divide by devicePixelRatio(). 25 | m_application->setAttribute(Qt::AA_UseHighDpiPixmaps); 26 | 27 | //Indicates the application infos. 28 | m_application->setApplicationName(getApplicationName()); 29 | m_application->setApplicationVersion(getApplicationVersion()); 30 | m_application->setOrganizationName(getOrganizationName()); 31 | m_application->setOrganizationDomain(getOrganizationDomain()); 32 | 33 | //Allows to use a stylesheet file to skinning this application. 34 | QFile File(":/themes/DarkStyle.qss"); 35 | File.open(QFile::ReadOnly); 36 | m_application->setStyleSheet(File.readAll()); 37 | } 38 | 39 | 40 | /** 41 | * \brief Allows to set the product type for an application. 42 | * \param product The product type of an application. 43 | */ 44 | void Studio::Softer::Application::setProductType(const ProductType& product) 45 | { 46 | m_product = product; 47 | } 48 | 49 | 50 | /** 51 | * \brief Allows to execute the application. 52 | * \return The good integer when the application is running or not. 53 | */ 54 | int Studio::Softer::Application::exec() 55 | { 56 | //Verifies if the application is already launched. 57 | if (m_sharedMemory->create(sizeof(int)) == false) 58 | { 59 | exit(1); 60 | } 61 | 62 | //New instance of QSplashScreen; 63 | m_splashScreen = new QSplashScreen(); 64 | 65 | //Shows the splash screen and version of an application, if getSplashScreenPath() is not empty. 66 | if (!getSplashScreenPath().isEmpty()) 67 | { 68 | QPixmap pixmap(getSplashScreenPath()); 69 | m_splashScreen->setPixmap(pixmap); 70 | m_splashScreen->showMessage("Version: " + getApplicationVersion(), 71 | Qt::AlignBottom | Qt::AlignRight, QColor(255, 255, 255)); 72 | m_splashScreen->show(); 73 | } 74 | 75 | //Thread for an process. 76 | m_application->processEvents(); 77 | 78 | //Creates and Shows the main window. 79 | Windows::Window window(m_menuBar); 80 | window.setOrganizationName(getOrganizationName()); 81 | window.setapplicationName(getApplicationName()); 82 | window.setWindowTitle(getApplicationName()); 83 | if (!getApplicationIconPath().isEmpty()) 84 | window.setIcon(getApplicationIconPath()); 85 | else 86 | window.setIcon(":/Icons/icon.png"); 87 | window.showWindow(); 88 | if (!getSplashScreenPath().isEmpty()) m_splashScreen->finish(&window); 89 | 90 | return m_application->exec(); 91 | } 92 | 93 | 94 | /** 95 | * \brief Allows to get the path of application icon. 96 | * \return The path of application icon. 97 | */ 98 | QString Studio::Softer::Application::getApplicationIconPath() const 99 | { 100 | return m_appIconPath; 101 | } 102 | 103 | 104 | /** 105 | * \brief Allows to get the application version. 106 | * \return The application version. 107 | */ 108 | QString Studio::Softer::Application::getApplicationVersion() const 109 | { 110 | return m_appVersion; 111 | } 112 | 113 | 114 | /** 115 | * \brief Allows to get the organization domain. 116 | * \return The organization domain. 117 | */ 118 | QString Studio::Softer::Application::getOrganizationDomain() const 119 | { 120 | return m_orgDomain; 121 | } 122 | 123 | 124 | /** 125 | * \brief Allows to get the application name. 126 | * \return The application name. 127 | */ 128 | QString Studio::Softer::Application::getApplicationName() const 129 | { 130 | return m_appName; 131 | } 132 | 133 | 134 | /** 135 | * \brief Allows to get the organization name. 136 | * \return The organization name. 137 | */ 138 | QString Studio::Softer::Application::getOrganizationName() const 139 | { 140 | return m_orgName; 141 | } 142 | 143 | 144 | /** 145 | * \brief Allows to get the path of splashscreen. 146 | * \return The path of splashscreen. 147 | */ 148 | QString Studio::Softer::Application::getSplashScreenPath() const 149 | { 150 | return m_splashPath; 151 | } 152 | 153 | 154 | /** 155 | * \brief Allows to get the product type of an application. 156 | * \return The product type. 157 | */ 158 | ProductType Studio::Softer::Application::getProductType() const 159 | { 160 | return m_product; 161 | } 162 | 163 | 164 | /** 165 | * \brief Allows to set the application name. 166 | * \param appName The name of this application. 167 | */ 168 | void Studio::Softer::Application::setApplicationName(const QString& appName) 169 | { 170 | m_appName = appName; 171 | } 172 | 173 | 174 | /** 175 | * \brief Allows to set the application version. 176 | * \param appVersion The version of this application. 177 | */ 178 | void Studio::Softer::Application::setApplicationVersion(const QString& appVersion) 179 | { 180 | m_appVersion = appVersion; 181 | } 182 | 183 | 184 | /** 185 | * \brief Allows to set the organization name. 186 | * \param orgName The organization name of this application. 187 | */ 188 | void Studio::Softer::Application::setOrganizationName(const QString& orgName) 189 | { 190 | m_orgName = orgName; 191 | } 192 | 193 | 194 | /** 195 | * \brief Allows to set the organization domain of an application. 196 | * \param orgDomain The organization doamin of an application. 197 | */ 198 | void Studio::Softer::Application::setOrganizationDomain(const QString& orgDomain) 199 | { 200 | m_orgDomain = orgDomain; 201 | } 202 | 203 | 204 | /** 205 | * \brief Allows to set the splash screen path. 206 | * \param splashPath The splash screen path. 207 | */ 208 | void Studio::Softer::Application::setSplashScreenPath(const QString& splashPath) 209 | { 210 | m_splashPath = splashPath; 211 | } 212 | 213 | 214 | /** 215 | * \brief Allows to set the icon path for an application. 216 | * \param iconPath The icon path. 217 | */ 218 | void Studio::Softer::Application::setApplicationIconPath(const QString& iconPath) 219 | { 220 | m_appIconPath = iconPath; 221 | } 222 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/Application.h: -------------------------------------------------------------------------------- 1 | #ifndef __APPLICATION__H_ 2 | #define __APPLICATION__H_ 3 | 4 | #include "studiosofter_global.h" 5 | #include "ProductType.h" 6 | 7 | #include 8 | #include 9 | #include 10 | #include 11 | 12 | namespace Studio 13 | { 14 | namespace Softer 15 | { 16 | class STUDIOSOFTER_EXPORT Application 17 | { 18 | public: 19 | Application(int argc, char *argv[]); 20 | void setProductType(const ProductType &product); 21 | void setApplicationName(const QString &appName); 22 | void setOrganizationName(const QString &orgName); 23 | void setSplashScreenPath(const QString &splashPath); 24 | void setApplicationIconPath(const QString &iconPath); 25 | void setOrganizationDomain(const QString &orgDomain); 26 | void setApplicationVersion(const QString &appVersion); 27 | int exec(); 28 | 29 | private: 30 | QString getApplicationIconPath() const; 31 | QString getApplicationVersion() const; 32 | QString getOrganizationDomain() const; 33 | QString getOrganizationName() const; 34 | QString getSplashScreenPath() const; 35 | QString getApplicationName() const; 36 | ProductType getProductType() const; 37 | 38 | QSplashScreen *m_splashScreen; 39 | QSharedMemory *m_sharedMemory; 40 | QApplication *m_application; 41 | ProductType m_product; 42 | QString m_appIconPath; 43 | QString m_appVersion; 44 | QString m_splashPath; 45 | QString m_orgDomain; 46 | QMenuBar *m_menuBar; 47 | QString m_orgName; 48 | QString m_appName; 49 | }; 50 | } 51 | } 52 | 53 | #endif -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/DarkStyle.qss: -------------------------------------------------------------------------------- 1 | #centralWidget { 2 | background-color: #282828; 3 | border: none; 4 | } 5 | 6 | #panel { 7 | background-color: #383838; 8 | } 9 | 10 | QSplitter::handle { 11 | background: #303030; 12 | } 13 | 14 | QSplitter::handle:horizontal { 15 | width: 1px; 16 | } 17 | 18 | QSplitter::handle:vertical { 19 | height: 1px; 20 | } 21 | 22 | QSplitter::handle:pressed { 23 | background: #303030; 24 | } 25 | 26 | #windowTitleBar { 27 | background-color: #282828; 28 | border-bottom: 1px solid #202020; 29 | } 30 | 31 | #titleBarIcon { 32 | margin-left: 5px; 33 | background: transparent; 34 | } 35 | 36 | QMenuBar { 37 | background-color: transparent; 38 | color: white; 39 | spacing: 10px; 40 | border: none; 41 | } 42 | 43 | QMenuBar::item { 44 | background: transparent; 45 | color: white; 46 | padding: 7.4px 10px; 47 | border: none; 48 | } 49 | 50 | QMenuBar::item:selected { 51 | background: #404040; 52 | color: #FFFFFF; 53 | } 54 | 55 | QMenuBar::item:pressed { 56 | background: #424242; 57 | color: #FFFFFF; 58 | } 59 | 60 | QMenu { 61 | background: #424242; 62 | color: white; 63 | } 64 | 65 | QMenu#submenu { 66 | background: #424242; 67 | color: white; 68 | padding-left: 3px; 69 | padding-right: 3px; 70 | padding-top: 2px; 71 | padding-bottom: 2px; 72 | border: 1px solid #353535; 73 | } 74 | 75 | QMenu::item { 76 | background: #424242; 77 | color: #FFFFFF; 78 | padding: 2px 25px 2px 20px; 79 | border: 1px solid transparent; 80 | } 81 | 82 | QMenu::item:selected { 83 | background: #303030; 84 | color: #FFFFFF; 85 | } 86 | 87 | QMenu::separator { 88 | height: 0.5px; 89 | background: #333337; 90 | margin: 2px 5px 2px 18px; 91 | } 92 | 93 | #minimizeButton { 94 | image: url(:/Icons/IconsCommand/Minimize.png); 95 | background-color: transparent; border:none; 96 | } 97 | 98 | #minimizeButton:hover { 99 | background-color: #404040; 100 | } 101 | 102 | #restoreButton { 103 | image: url(:/Icons/IconsCommand/Restore.png); 104 | background-color: transparent; border:none; 105 | } 106 | 107 | #restoreButton:hover { 108 | background-color: #404040; 109 | } 110 | 111 | #maximizeButton { 112 | image: url(:/Icons/IconsCommand/Maximize.png); 113 | background-color: transparent; border:none; 114 | } 115 | 116 | #maximizeButton:hover { 117 | background-color: #404040; 118 | } 119 | 120 | #closeButton { 121 | image: url(:/Icons/IconsCommand/Close.png); 122 | background-color: transparent; border:none; 123 | } 124 | 125 | #closeButton:hover { 126 | background-color: #404040; 127 | } 128 | 129 | #closeButtonPanel { 130 | image: url(:/Icons/IconsCommand/Close.png); 131 | background-color: transparent; 132 | border: none; 133 | } 134 | 135 | #closeButtonPanel:hover { 136 | background-color: #404040; 137 | } 138 | 139 | QToolTip { 140 | background-color: #f1f2f7; 141 | border: 1px solid #767676; 142 | } 143 | 144 | 145 | QStatusBar { 146 | background-color: #383838; 147 | color: white; 148 | } 149 | 150 | #toolBar { 151 | background: #383838; 152 | color: #202020; 153 | spacing: 5px; 154 | padding-left: 3px; 155 | padding-right: 3px; 156 | border: none; 157 | border-bottom: 1px solid #252525; 158 | } 159 | 160 | #toolBar::separator { 161 | background: #303030; 162 | width: 0.5px; 163 | margin-left: 5px; 164 | margin-right: 5px; 165 | } 166 | 167 | #toolBarParams { 168 | background: #383838; 169 | color: #202020; 170 | spacing: 5px; 171 | padding-left: 3px; 172 | padding-right: 3px; 173 | border: none; 174 | } 175 | 176 | #toolBarParams::separator { 177 | background: #303030; 178 | width: 0.5px; 179 | margin-left: 5px; 180 | margin-right: 5px; 181 | } 182 | 183 | #toolBar::handle { 184 | background: url(:/Icons/ToolbarIcons/handle.png); 185 | width: 2px; 186 | margin: 8px; 187 | } 188 | 189 | #toolBox { 190 | background: #383838; 191 | spacing: 5px; 192 | padding-left: 3px; 193 | padding-right: 3px; 194 | border: none; 195 | } 196 | 197 | #toolBox::handle { 198 | background: url(:/Icons/ToolbarIcons/handle-toolbox.png); 199 | height: 2px; 200 | width: 2px; 201 | margin: 8px; 202 | } 203 | 204 | #toolBarButton { 205 | background-color: transparent; 206 | } 207 | 208 | #toolBoxButton { 209 | background-color: transparent; 210 | } 211 | 212 | QDockWidget { 213 | background-color: #383838; 214 | } 215 | 216 | 217 | /*-------------- Panel Window ---------------------*/ 218 | 219 | #centralWidgetFloating { 220 | background-color: #404040; 221 | } 222 | 223 | #windowTitleBarFloating { 224 | background-color: #323232; 225 | border-bottom: 1px solid #202020; 226 | } 227 | 228 | #closeButtonFloating { 229 | image: url(:/Icons/IconsCommand/Close.png); 230 | background-color: transparent; border:none; 231 | } 232 | 233 | #closeButtonFloating:hover { 234 | background-color: #404040; 235 | } 236 | 237 | 238 | /*-------------- Dock System ---------------------*/ 239 | 240 | ads--ContainerWidget, 241 | ContainerWidget 242 | { 243 | background: #404040; 244 | } 245 | 246 | ads--ContainerWidget QSplitter::handle, 247 | ContainerWidget QSplitter::handle 248 | { 249 | background: #101010; 250 | } 251 | 252 | ads--SectionWidget, 253 | SectionWidget 254 | { 255 | background: #A0A0A0; 256 | border: none; 257 | } 258 | 259 | ads--SectionWidget #tabsMenuButton::menu-indicator, 260 | SectionWidget #tabsMenuButton::menu-indicator 261 | { 262 | image: none; 263 | } 264 | 265 | ads--SectionTitleWidget, 266 | SectionTitleWidget 267 | { 268 | background: #404040; 269 | border-color: #202020; 270 | border-style: solid; 271 | border: none; 272 | padding: 0 9px; 273 | } 274 | 275 | ads--SectionTitleWidget[activeTab="true"], 276 | SectionTitleWidget[activeTab="true"] 277 | { 278 | background: #282828; 279 | } 280 | 281 | ads--SectionContentWidget, 282 | SectionContentWidget 283 | { 284 | border-color: transparent; 285 | background: #282828; 286 | border-style: solid; 287 | border: none; 288 | } 289 | 290 | /* Special: QLabels inside SectionTitleWidget 291 | */ 292 | ads--SectionTitleWidget QLabel, 293 | SectionTitleWidget QLabel 294 | { 295 | color: #fff; 296 | } 297 | ads--SectionTitleWidget[activeTab="true"] QLabel, 298 | SectionTitleWidget[activeTab="true"] QLabel 299 | { 300 | color: #fff; 301 | } 302 | 303 | /* Special: QLabels inside SectionTitleWidget, which is floating 304 | */ 305 | ads--FloatingWidget ads--SectionTitleWidget QLabel, 306 | FloatingWidget SectionTitleWidget QLabel 307 | { 308 | color: #fff; 309 | } -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/IconsCommand/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/IconsCommand/Close.png -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/IconsCommand/Maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/IconsCommand/Maximize.png -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/IconsCommand/Minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/IconsCommand/Minimize.png -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/IconsCommand/Restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/IconsCommand/Restore.png -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/ProductType.h: -------------------------------------------------------------------------------- 1 | #ifndef __PRODUCTTYPE__H_ 2 | #define __PRODUCTTYPE__H_ 3 | 4 | enum ProductType 5 | { 6 | None, 7 | Audio, 8 | Coder, 9 | Numar, 10 | Photo, 11 | Unreal, 12 | Wiggle, 13 | Visual, 14 | Designer, 15 | }; 16 | 17 | #endif -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/Studio.Softer.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Header Files 6 | 7 | 8 | Generated Files 9 | 10 | 11 | Header Files 12 | 13 | 14 | 15 | 16 | {D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E} 17 | qrc;* 18 | false 19 | 20 | 21 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 22 | h;hh;hpp;hxx;hm;inl;inc;xsd 23 | true 24 | 25 | 26 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 27 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 28 | true 29 | 30 | 31 | {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11} 32 | moc;h;cpp 33 | true 34 | 35 | 36 | {3b001347-0fcf-4b8c-9ee6-e5ddd4ede02e} 37 | 38 | 39 | {c70ba6e8-1a70-40b3-8fa9-403f2f1a375c} 40 | cpp;moc 41 | False 42 | 43 | 44 | {f49e4c34-f931-4370-a3c1-ec60c413e808} 45 | cpp;moc 46 | False 47 | 48 | 49 | 50 | 51 | Source Files 52 | 53 | 54 | Generated Files 55 | 56 | 57 | 58 | 59 | Resource Files 60 | 61 | 62 | 63 | 64 | Qss Files 65 | 66 | 67 | Qss Files 68 | 69 | 70 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/Studio.Softer.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 6 | PATH=$(QTDIR)\bin%3b$(PATH) 7 | 8 | 9 | C:\Qt\Qt5.9.2\5.9.2\msvc2017_64 10 | PATH=$(QTDIR)\bin%3b$(PATH) 11 | 12 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/icon.png -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | IconsCommand/Close.png 4 | IconsCommand/Maximize.png 5 | IconsCommand/Minimize.png 6 | IconsCommand/Restore.png 7 | icon.png 8 | 9 | 10 | DarkStyle.qss 11 | LightStyle.qss 12 | 13 | 14 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/studiosofter_global.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #ifndef BUILD_STATIC 6 | # if defined(STUDIOSOFTER_LIB) 7 | # define STUDIOSOFTER_EXPORT Q_DECL_EXPORT 8 | # else 9 | # define STUDIOSOFTER_EXPORT Q_DECL_IMPORT 10 | # endif 11 | #else 12 | # define STUDIOSOFTER_EXPORT 13 | #endif 14 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Application.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Application.obj -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:36:57. 2 | 1>Projet "H:\Projets StudioSofter\Studio.Softer\Studio.Softer\Studio.Softer.vcxproj" sur le nœud 2 (Build cible(s)). 3 | 1>Link: 4 | Studio.Softer.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Debug\Studio.Softer.dll 5 | 1>Génération du projet "H:\Projets StudioSofter\Studio.Softer\Studio.Softer\Studio.Softer.vcxproj" terminée (Build cible(s)). 6 | 7 | La génération a réussi. 8 | 9 | Temps écoulé 00:00:00.11 10 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/Studio.Softer.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/Studio.Softer.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/Studio.Softer.write.1u.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/Studio.Softer.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/qrc_resources.obj -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Application.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Application.obj -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.log: -------------------------------------------------------------------------------- 1 | La génération a démarré 10/07/2018 21:40:29. 2 | 1>Projet "H:\Projets StudioSofter\Studio.Softer\Studio.Softer\Studio.Softer.vcxproj" sur le nœud 2 (Build cible(s)). 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\CL.exe /c /I.\GeneratedFiles /I. /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include /I.\GeneratedFiles\Release /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DCore /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DAnimation /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DExtras /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DInput /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DLogic /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DRender /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuick /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickAnimation /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickExtras /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickInput /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickRender /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickScene2D /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\ActiveQt /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtBluetooth /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtConcurrent /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtCore /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtDBus /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtGamepad /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtGui /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtANGLE /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtHelp /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtLocation /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtMultimedia /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtMultimediaWidgets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtNetwork /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtNfc /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtOpenGL /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtOpenGLExtensions /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtPositioning /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtPrintSupport /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQml /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuick /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuickWidgets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuickControls2 /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuickTest /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtScxml /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSensors /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSerialBus /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSerialPort /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSql /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSvg /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtTest /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtUiTools /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWebChannel /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWebSockets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWidgets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWinExtras /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtXml /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtXmlPatterns /I../../Studio.Softer.Windows/Studio.Softer.Windows /nologo /W1 /WX- /MP /O2 /D UNICODE /D _UNICODE /D WIN32 /D WIN64 /D QT_DLL /D QT_NO_DEBUG /D NDEBUG /D QT_3DCORE_LIB /D QT_3DANIMATION_LIB /D QT_3DEXTRAS_LIB /D QT_3DINPUT_LIB /D QT_3DLOGIC_LIB /D QT_3DRENDER_LIB /D QT_3DQUICK_LIB /D QT_3DQUICKANIMATION_LIB /D QT_3DQUICKEXTRAS_LIB /D QT_3DQUICKINPUT_LIB /D QT_3DQUICKRENDER_LIB /D QT_3DQUICKSCENE2D_LIB /D QT_BLUETOOTH_LIB /D QT_CONCURRENT_LIB /D QT_CORE_LIB /D QT_DBUS_LIB /D QT_GAMEPAD_LIB /D QT_GUI_LIB /D QT_HELP_LIB /D QT_LOCATION_LIB /D QT_MULTIMEDIA_LIB /D QT_MULTIMEDIAWIDGETS_LIB /D QT_NETWORK_LIB /D QT_NFC_LIB /D QT_OPENGL_LIB /D QT_OPENGLEXTENSIONS_LIB /D QT_POSITIONING_LIB /D QT_PRINTSUPPORT_LIB /D QT_QML_LIB /D QT_QUICK_LIB /D QT_QUICKWIDGETS_LIB /D QT_QUICKCONTROLS2_LIB /D QT_QMLTEST_LIB /D QT_SCXML_LIB /D QT_SENSORS_LIB /D QT_SERIALBUS_LIB /D QT_SERIALPORT_LIB /D QT_SQL_LIB /D QT_SVG_LIB /D QT_TESTLIB_LIB /D QT_UITOOLS_LIB /D QT_WEBCHANNEL_LIB /D QT_WEBSOCKETS_LIB /D QT_WIDGETS_LIB /D QT_WINEXTRAS_LIB /D QT_XML_LIB /D QT_XMLPATTERNS_LIB /D STUDIOSOFTER_LIB /D _WINDLL /Gm- /EHsc /MD /GS /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"x64\Release\\" /Fd"x64\Release\vc140.pdb" /Gd /TP /errorReport:prompt Application.cpp 5 | Application.cpp 6 | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\CL.exe /c /I.\GeneratedFiles /I. /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include /I.\GeneratedFiles\Release /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DCore /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DAnimation /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DExtras /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DInput /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DLogic /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DRender /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuick /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickAnimation /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickExtras /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickInput /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickRender /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\Qt3DQuickScene2D /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\ActiveQt /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtBluetooth /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtConcurrent /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtCore /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtDBus /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtGamepad /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtGui /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtANGLE /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtHelp /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtLocation /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtMultimedia /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtMultimediaWidgets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtNetwork /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtNfc /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtOpenGL /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtOpenGLExtensions /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtPositioning /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtPrintSupport /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQml /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuick /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuickWidgets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuickControls2 /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtQuickTest /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtScxml /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSensors /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSerialBus /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSerialPort /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSql /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtSvg /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtTest /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtUiTools /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWebChannel /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWebSockets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWidgets /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtWinExtras /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtXml /IC:\Qt\Qt5.9.2\5.9.2\msvc2017_64\include\QtXmlPatterns /I../../Studio.Softer.Windows/Studio.Softer.Windows /nologo /W1 /WX- /MP /O2 /D UNICODE /D _UNICODE /D WIN32 /D WIN64 /D QT_DLL /D QT_NO_DEBUG /D NDEBUG /D QT_3DCORE_LIB /D QT_3DANIMATION_LIB /D QT_3DEXTRAS_LIB /D QT_3DINPUT_LIB /D QT_3DLOGIC_LIB /D QT_3DRENDER_LIB /D QT_3DQUICK_LIB /D QT_3DQUICKANIMATION_LIB /D QT_3DQUICKEXTRAS_LIB /D QT_3DQUICKINPUT_LIB /D QT_3DQUICKRENDER_LIB /D QT_3DQUICKSCENE2D_LIB /D QT_BLUETOOTH_LIB /D QT_CONCURRENT_LIB /D QT_CORE_LIB /D QT_DBUS_LIB /D QT_GAMEPAD_LIB /D QT_GUI_LIB /D QT_HELP_LIB /D QT_LOCATION_LIB /D QT_MULTIMEDIA_LIB /D QT_MULTIMEDIAWIDGETS_LIB /D QT_NETWORK_LIB /D QT_NFC_LIB /D QT_OPENGL_LIB /D QT_OPENGLEXTENSIONS_LIB /D QT_POSITIONING_LIB /D QT_PRINTSUPPORT_LIB /D QT_QML_LIB /D QT_QUICK_LIB /D QT_QUICKWIDGETS_LIB /D QT_QUICKCONTROLS2_LIB /D QT_QMLTEST_LIB /D QT_SCXML_LIB /D QT_SENSORS_LIB /D QT_SERIALBUS_LIB /D QT_SERIALPORT_LIB /D QT_SQL_LIB /D QT_SVG_LIB /D QT_TESTLIB_LIB /D QT_UITOOLS_LIB /D QT_WEBCHANNEL_LIB /D QT_WEBSOCKETS_LIB /D QT_WIDGETS_LIB /D QT_WINEXTRAS_LIB /D QT_XML_LIB /D QT_XMLPATTERNS_LIB /D STUDIOSOFTER_LIB /D _WINDLL /Gm- /EHsc /MD /GS /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"x64\Release\\" /Fd"x64\Release\vc140.pdb" /Gd /TP /errorReport:prompt GeneratedFiles\qrc_resources.cpp 7 | qrc_resources.cpp 8 | Link: 9 | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:PROMPT /OUT:"H:\Projets StudioSofter\DesignerStudio\x64\Release\\Studio.Softer.dll" /NOLOGO /LIBPATH:C:\Qt\Qt5.9.2\5.9.2\msvc2017_64\lib qtmain.lib Qt53DCore.lib Qt53DAnimation.lib Qt53DExtras.lib Qt53DInput.lib Qt53DLogic.lib Qt53DRender.lib Qt53DQuick.lib Qt53DQuickAnimation.lib Qt53DQuickExtras.lib Qt53DQuickInput.lib Qt53DQuickRender.lib Qt53DQuickScene2D.lib Qt5AxContainer.lib Qt5AxBase.lib Qt5Bluetooth.lib Qt5Concurrent.lib Qt5Core.lib Qt5DBus.lib Qt5Gamepad.lib Qt5Gui.lib Qt5Help.lib Qt5Location.lib Qt5Multimedia.lib Qt5MultimediaWidgets.lib Qt5Network.lib Qt5Nfc.lib Qt5OpenGL.lib opengl32.lib glu32.lib Qt5OpenGLExtensions.lib Qt5Positioning.lib Qt5PrintSupport.lib Qt5Qml.lib Qt5Quick.lib Qt5QuickWidgets.lib Qt5QuickControls2.lib Qt5QuickTest.lib Qt5Scxml.lib Qt5Sensors.lib Qt5SerialBus.lib Qt5SerialPort.lib Qt5Sql.lib Qt5Svg.lib Qt5Test.lib Qt5UiTools.lib Qt5WebChannel.lib Qt5WebSockets.lib Qt5Widgets.lib Qt5WinExtras.lib Qt5Xml.lib Qt5XmlPatterns.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:"H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.lib" /MACHINE:X64 /DLL x64\Release\Application.obj 10 | x64\Release\qrc_resources.obj 11 | "H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.Windows.lib" 12 | Création de la bibliothèque H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.lib et de l'objet H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.exp 13 | Studio.Softer.vcxproj -> H:\Projets StudioSofter\DesignerStudio\x64\Release\Studio.Softer.dll 14 | 1>Génération du projet "H:\Projets StudioSofter\Studio.Softer\Studio.Softer\Studio.Softer.vcxproj" terminée (Build cible(s)). 15 | 16 | La génération a réussi. 17 | 18 | Temps écoulé 00:00:07.14 19 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/Studio.Softer.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|x64|H:\Projets StudioSofter\DesignerStudio\| 3 | -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/Studio.Softer.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/Studio.Softer.write.1u.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/custombuild.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/custombuild.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/custombuild.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/custombuild.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/custombuild.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/custombuild.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/Studio.Softer.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Studio.Softer/Studio.Softer/x64/Release/qrc_resources.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/Studio.Softer/Studio.Softer/x64/Release/qrc_resources.obj -------------------------------------------------------------------------------- /window1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/window1.png -------------------------------------------------------------------------------- /window2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moussa-Ball/BorderlessWindowQt-Modern-Gui/e661095504bbaef274a7f7b133e8a59a4f1bf4d3/window2.png --------------------------------------------------------------------------------