Browse Source

Added icons for Python files and projects.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3633 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 17 years ago
parent
commit
178f9f03e1
  1. 9
      data/resources/image/BitmapResources/BitmapResources.res
  2. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.ProjectBrowser.File.png
  3. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.ProjectBrowser.Project.png
  4. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.Template.Class.png
  5. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.Template.ConsoleProject.png
  6. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.Template.EmptyFile.png
  7. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.Template.Form.png
  8. BIN
      data/resources/image/BitmapResources/backendicons/Python/Python.Template.WinFormsProject.png
  9. 9
      src/AddIns/BackendBindings/Python/PythonBinding/Project/PythonBinding.addin
  10. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/ConsoleProject.xpt
  11. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/Empty.xft
  12. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/EmptyClass.xft
  13. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/EmptyForm.xft
  14. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/EmptyUserControl.xft
  15. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/FormsProject.xpt
  16. BIN
      src/Main/StartUp/Project/Resources/BitmapResources.resources

9
data/resources/image/BitmapResources/BitmapResources.res

@ -493,3 +493,12 @@ Icons.16x16.NavigateForward = NavigationIcons\Icons.16x16.NavigateF @@ -493,3 +493,12 @@ Icons.16x16.NavigateForward = NavigationIcons\Icons.16x16.NavigateF
#Setup icons (Wix)
Setup.Icons.16x16.SetupDialogsPad = SetupIcons\Setup.Icons.16x16.SetupDialogsPad.png
Setup.Icons.16x16.Component = SetupIcons\Setup.Icons.16x16.Component.png
#Python icons
Python.ProjectBrowser.File = backendicons\Python\Python.ProjectBrowser.File.png
Python.ProjectBrowser.Project = backendicons\Python\Python.ProjectBrowser.Project.png
Python.Template.Class = backendicons\Python\Python.Template.Class.png
Python.Template.EmptyFile = backendicons\Python\Python.Template.EmptyFile.png
Python.Template.Form = backendicons\Python\Python.Template.Form.png
Python.Template.ConsoleProject = backendicons\Python\Python.Template.ConsoleProject.png
Python.Template.WinFormsProject = backendicons\Python\Python.Template.WinFormsProject.png

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.ProjectBrowser.File.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 B

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.ProjectBrowser.Project.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 B

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.Template.Class.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.Template.ConsoleProject.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.Template.EmptyFile.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.Template.Form.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
data/resources/image/BitmapResources/backendicons/Python/Python.Template.WinFormsProject.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

9
src/AddIns/BackendBindings/Python/PythonBinding/Project/PythonBinding.addin

@ -161,4 +161,13 @@ @@ -161,4 +161,13 @@
icon = "PadIcons.Output"
class = "ICSharpCode.PythonBinding.PythonConsolePad"/>
</Path>
<Path name = "/Workspace/Icons">
<Icon id = "PythonFileIcon"
extensions = ".py"
resource = "Python.ProjectBrowser.File" />
<Icon id = "PythonProjectIcon"
language = "Python"
resource = "Python.ProjectBrowser.Project" />
</Path>
</AddIn>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/ConsoleProject.xpt

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
<TemplateConfiguration>
<Name>${res:Templates.Project.ConsoleProject.Name}</Name>
<Category>Python</Category>
<Icon>Icons.32x32.EmptyProjectIcon</Icon>
<Icon>Python.Template.ConsoleProject</Icon>
<Description>${res:Templates.Project.ConsoleProject.Description}</Description>
</TemplateConfiguration>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/Empty.xft

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<Template author="Matt Ward" version="1.0">
<Config name = "${res:Templates.File.EmptyFile.Name}"
icon = "Icons.32x32.EmptyFileIcon"
icon = "Python.Template.EmptyFile"
category = "Python"
defaultname = "Empty${Number}.py"
language = "Python"/>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/EmptyClass.xft

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<Template author="Matt Ward" version="1.0">
<Config name = "${res:Templates.File.EmptyClass.Name}"
icon = "Icons.32x32.EmptyFileIcon"
icon = "Python.Template.Class"
category = "Python"
defaultname = "Class${Number}.py"
language = "Python"/>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/EmptyForm.xft

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<Template author="Matt Ward" version="1.0">
<Config name = "${res:Templates.File.WindowsForm.Name}"
icon = "Icons.32x32.EmptyFileIcon"
icon = "Python.Template.Form"
category = "Python"
defaultname = "Form${Number}.py"
language = "Python"/>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/EmptyUserControl.xft

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<Template author="Matt Ward" version="1.0">
<Config name = "${res:Templates.File.WindowsUserControl.Name}"
icon = "Icons.32x32.EmptyFileIcon"
icon = "Python.Template.Form"
category = "Python"
defaultname = "UserControl${Number}.py"
language = "Python"/>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/Templates/FormsProject.xpt

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
<TemplateConfiguration>
<Name>${res:Templates.Project.WindowsApplication.Name}</Name>
<Category>Python</Category>
<Icon>Icons.32x32.EmptyProjectIcon</Icon>
<Icon>Python.Template.WinFormsProject</Icon>
<Description>${res:Templates.Project.WindowsApplication.Description}</Description>
</TemplateConfiguration>

BIN
src/Main/StartUp/Project/Resources/BitmapResources.resources

Binary file not shown.
Loading…
Cancel
Save