summaryrefslogtreecommitdiff
path: root/SparkleShare/Windows/UserInterface/UserInterfaceHelpers.cs
blob: a76e4d534d30afdcd0668f182fd9b98000acd247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//   SparkleShare, a collaboration and sharing tool.
//   Copyright (C) 2010  Hylke Bons <hi@planetpeanut.uk>
//
//   This program is free software: you can redistribute it and/or modify
//   it under the terms of the GNU General Public License as published by
//   the Free Software Foundation, either version 3 of the License, or
//   (at your option) any later version.
//
//   This program is distributed in the hope that it will be useful,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//   GNU General Public License for more details.
//
//   You should have received a copy of the GNU General Public License
//   along with this program.  If not, see <http://www.gnu.org/licenses/>.


using System;
using System.IO;
using System.Reflection;
using System.Windows.Media;
using System.Windows.Media.Imaging;

using Drawing = System.Drawing;

namespace SparkleShare {

    public static class UserInterfaceHelpers {
        
        public static string ToHex (this Drawing.Color color)
        {
            return string.Format ("#{0:X2}{1:X2}{2:X2}", color.R, color.G, color.B);
        }


        public static BitmapFrame GetImageSource (string name)
        {
            return GetImageSource (name, "png");
        }


        public static BitmapFrame GetImageSource (string name, string type)
        {
            Assembly assembly = Assembly.GetExecutingAssembly();
            Stream image_stream = assembly.GetManifestResourceStream("SparkleShare.Windows.Images." + name + "." + type);
            return BitmapFrame.Create(image_stream);
        }

        public static ImageSource GetImage(string absolutePath)
        {
            BitmapImage image = new BitmapImage();
            image.BeginInit();
            image.UriSource = new Uri(absolutePath, UriKind.Absolute);
            image.CacheOption = BitmapCacheOption.OnDemand;
            image.EndInit();

            return image;
        }

        public static Drawing.Bitmap GetBitmap (string name)
        {                                          
            Assembly assembly   = Assembly.GetExecutingAssembly ();
            Stream image_stream = assembly.GetManifestResourceStream ("SparkleShare.Windows.Images." + name + ".png");
            return (Drawing.Bitmap) Drawing.Bitmap.FromStream (image_stream);
        }
        
        
        public static string GetHTML (string name)
        {                                          
            Assembly assembly        = Assembly.GetExecutingAssembly ();
            StreamReader html_reader = new StreamReader (
                assembly.GetManifestResourceStream ("SparkleShare.Windows.HTML." + name));
            
            return html_reader.ReadToEnd ();
        }
    }
}