mirror of
https://github.com/TheUltimateHacker/shiftos-next.git
synced 2025-01-23 00:42:14 +00:00
6c5f8c6381
We're one step closer to the full Basic Window Manager implementation. I've created a UserControl called "TitleBar" for the BWM. This UserControl contains the window handling code for draggable windows, as well as a design-time settable AppName property that allows you to change the application display name (what text is shown on the titlebar). Shiftorium upgrades to unlock Draggable Windows will be added soon, but I have to clean the beast.
214 lines
No EOL
8.1 KiB
XML
214 lines
No EOL
8.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{16D4DAEC-1CC8-40FD-9EB0-CE2343A3C8C7}</ProjectGuid>
|
|
<OutputType>WinExe</OutputType>
|
|
<StartupObject>shiftos_next.My.MyApplication</StartupObject>
|
|
<RootNamespace>shiftos_next</RootNamespace>
|
|
<AssemblyName>shiftos_next</AssemblyName>
|
|
<FileAlignment>512</FileAlignment>
|
|
<MyType>WindowsForms</MyType>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<DefineDebug>true</DefineDebug>
|
|
<DefineTrace>true</DefineTrace>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DocumentationFile>shiftos_next.xml</DocumentationFile>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineDebug>false</DefineDebug>
|
|
<DefineTrace>true</DefineTrace>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DocumentationFile>shiftos_next.xml</DocumentationFile>
|
|
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionExplicit>On</OptionExplicit>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionCompare>Binary</OptionCompare>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionStrict>Off</OptionStrict>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OptionInfer>On</OptionInfer>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Deployment" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Import Include="Microsoft.VisualBasic" />
|
|
<Import Include="System" />
|
|
<Import Include="System.Collections" />
|
|
<Import Include="System.Collections.Generic" />
|
|
<Import Include="System.Data" />
|
|
<Import Include="System.Drawing" />
|
|
<Import Include="System.Diagnostics" />
|
|
<Import Include="System.Windows.Forms" />
|
|
<Import Include="System.Linq" />
|
|
<Import Include="System.Xml.Linq" />
|
|
<Import Include="System.Threading.Tasks" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="API.vb" />
|
|
<Compile Include="BasicWM_ColorTable.vb" />
|
|
<Compile Include="basicwm_infobox.Designer.vb">
|
|
<DependentUpon>basicwm_infobox.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="basicwm_infobox.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="basicwm_renderer.vb" />
|
|
<Compile Include="BWM User Controls\Titlebar.Designer.vb">
|
|
<DependentUpon>Titlebar.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="BWM User Controls\Titlebar.vb">
|
|
<SubType>UserControl</SubType>
|
|
</Compile>
|
|
<Compile Include="BWMDesktop.Designer.vb">
|
|
<DependentUpon>BWMDesktop.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="BWMDesktop.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="ColorPicker.Designer.vb">
|
|
<DependentUpon>ColorPicker.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="ColorPicker.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="file skimmer.Designer.vb">
|
|
<DependentUpon>file skimmer.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="file skimmer.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="filesystem.vb" />
|
|
<Compile Include="Hijack.Designer.vb">
|
|
<DependentUpon>Hijack.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Hijack.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
|
<Compile Include="My Project\Application.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Application.myapp</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="My Project\Resources.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="My Project\Settings.Designer.vb">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
<Compile Include="saveengine.vb" />
|
|
<Compile Include="shiftorium_api.vb" />
|
|
<Compile Include="shiftorium_cmd.Designer.vb">
|
|
<DependentUpon>shiftorium_cmd.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="shiftorium_cmd.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Terminal.Designer.vb">
|
|
<DependentUpon>Terminal.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Terminal.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="TerminalGames.vb" />
|
|
<Compile Include="TextPad.Designer.vb">
|
|
<DependentUpon>TextPad.vb</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="TextPad.vb">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="basicwm_infobox.resx">
|
|
<DependentUpon>basicwm_infobox.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="BWM User Controls\Titlebar.resx">
|
|
<DependentUpon>Titlebar.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="BWMDesktop.resx">
|
|
<DependentUpon>BWMDesktop.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="ColorPicker.resx">
|
|
<DependentUpon>ColorPicker.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="file skimmer.resx">
|
|
<DependentUpon>file skimmer.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Hijack.resx">
|
|
<DependentUpon>Hijack.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="My Project\Resources.resx">
|
|
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="shiftorium_cmd.resx">
|
|
<DependentUpon>shiftorium_cmd.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Terminal.resx">
|
|
<DependentUpon>Terminal.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="TextPad.resx">
|
|
<DependentUpon>TextPad.vb</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="My Project\Application.myapp">
|
|
<Generator>MyApplicationCodeGenerator</Generator>
|
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
|
</None>
|
|
<None Include="My Project\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<CustomToolNamespace>My</CustomToolNamespace>
|
|
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
|
</None>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\TextFile.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\Folder.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\Folder1.png" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |