Skip to content

Commit

Permalink
Radiant.NET moved to MetroFramework.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall23 committed Apr 8, 2020
1 parent 9b825aa commit c32d24f
Show file tree
Hide file tree
Showing 155 changed files with 25,950 additions and 229 deletions.
Binary file added MetroFramework.dll
Binary file not shown.
3 changes: 2 additions & 1 deletion code/exports.def
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ EXPORTS
RadiantAPI_GetSelectedEntityAttributes @20
RadiantAPI_UpdateSelectedEntityAttribute @21
RadiantAPI_GetMaterialDirectories @22
RadiantAPI_LoadTextureDirectory @23
RadiantAPI_LoadTextureDirectory @23
RadiantAPI_GetGameName @24
22 changes: 22 additions & 0 deletions code/external/metroframework/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
164 changes: 164 additions & 0 deletions code/external/metroframework/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover

## TODO: If you have NuGet Package Restore enabled, uncomment this
#packages/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp

# ReSharper is a .NET coding add-in
_ReSharper*

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish

# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML



############
## Windows
############

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

# Mac crap
.DS_Store
*.nupkg
66 changes: 66 additions & 0 deletions code/external/metroframework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
Changelog File

-----------------------------------------------------------------------------------
SW 2013-04-02 09:55 - AssemblyVersion 1.2.0.0
-----------------------------------------------------------------------------------

* Added support for a style extender control (applys theme propertys to none framework controls)
* Fixed textbox tab stop behaviour
* Fixed maximize window behaviour
* Fixed ComboBox item text by using a data source
* Added additional propertys to textbox

*** thx to thielj, who strongly tested and helped to improve the code! ***


-----------------------------------------------------------------------------------
SW 2013-03-04 17:32 - AssemblyVersion 1.1.0.0
-----------------------------------------------------------------------------------

* Added support for realistic drop shadow
* Implemented "ShadowType" Property to switch between old flat shadow and new realistic drop shadow

*** thx to nripendra, who delivers the base code! ***


-----------------------------------------------------------------------------------
SW 2013-03-03 19:20 - AssemblyVersion 1.1.0.0
-----------------------------------------------------------------------------------

* MetroForm Property Moveable disables the possibility to move the form completely
* MetroTile has new Property "PaintTileCount" to disable the painting of the tile counts
* Basic controls now providing Properties "CustomBackColor" and "CustomForeColor" to override the default metro framework styles
* Added support for multi monitor environments
* Several bug fixes


-----------------------------------------------------------------------------------
SW 2013-02-20 17:03 - AssemblyVersion 1.1.0.0
-----------------------------------------------------------------------------------

* MetroForm has new Property DisableHeader to hide HeaderText
* Scrollbar has new Property ScrollbarSize to manually define Scrollbar thickness
* MetroLocalize now renders default language correctly if localization file could not be found
* MetroTextbox is resizable again
* ProgressSpinner does not spin in DesignMode and Spinning is changed to TRUE as default


-----------------------------------------------------------------------------------
SW 2013-02-20 - AssemblyVersion 1.1.0.0
-----------------------------------------------------------------------------------

* Changed AssemblyVersion
* Refactored ProgressBar and TabControl to fit the default MetroDesign
* Refactored all Controls to be more stable
* Stripped out and cleaned up overall code structure
* Removed DWM Glass Extend on Vista/7 because was to buggy
* Implemented ShadowForm to create a custom shadow for all forms
* Set FormBorderStyle=None as Default on all plattforms
* Implemented new controls: MetroProgressSpinner, MetroComboBox
* Currently under construction: MetroContextMenuStrip
* Fixed Scrollbar Behaviour overall (Problem in TabControl occurs everywhere... The ScrollValue calculation has to be extended to use the ThumbSize also!)
* Implemented translation class (MetroLocalize) to localize used texts in controls (at this moment only for MetroToggle)
* Implemented GripSizeDisplay on MetroForm
* Added support for window startup location

-----------------------------------------------------------------------------------
22 changes: 22 additions & 0 deletions code/external/metroframework/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MetroFramework - Windows Modern UI for .NET WinForms Applications

Copyright (c) 2013 Jens Thiel, http://thielj.github.com/MetroFramework

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Portions of this software are (c) 2011 Sven Walter, http://github.com/viperneo
Loading

0 comments on commit c32d24f

Please sign in to comment.